package com.highdatas.mdm.entity;
|
|
import com.baomidou.mybatisplus.annotations.TableField;
|
import com.baomidou.mybatisplus.activerecord.Model;
|
import com.baomidou.mybatisplus.annotations.TableName;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
*
|
* </p>
|
*
|
* @author kimi
|
* @since 2020-04-22
|
*/
|
@TableName("sys_view_logic")
|
public class SysViewLogic extends Model<SysViewLogic> {
|
|
private static final long serialVersionUID = 1L;
|
/*
|
* 主键
|
* */
|
private String id;
|
/*
|
* 类型
|
* */
|
private String type;
|
/*
|
* 名称
|
* */
|
private String name;
|
|
/*
|
* 类名
|
* */
|
@TableField("claz_name")
|
private String clazName;
|
|
/*
|
* 方法名
|
* */
|
@TableField("func_name")
|
private String funcName;
|
|
/*
|
* 是否激活
|
* */
|
private Boolean active;
|
|
public String getId() {
|
return id;
|
}
|
|
public SysViewLogic setId(String id) {
|
this.id = id;
|
return this;
|
}
|
public String getType() {
|
return type;
|
}
|
|
public SysViewLogic setType(String type) {
|
this.type = type;
|
return this;
|
}
|
public String getName() {
|
return name;
|
}
|
|
public SysViewLogic setName(String name) {
|
this.name = name;
|
return this;
|
}
|
public String getClazName() {
|
return clazName;
|
}
|
|
public SysViewLogic setClazName(String clazName) {
|
this.clazName = clazName;
|
return this;
|
}
|
public String getFuncName() {
|
return funcName;
|
}
|
|
public SysViewLogic setFuncName(String funcName) {
|
this.funcName = funcName;
|
return this;
|
}
|
public Boolean getActive() {
|
return active;
|
}
|
|
public SysViewLogic setActive(Boolean active) {
|
this.active = active;
|
return this;
|
}
|
|
@Override
|
protected Serializable pkVal() {
|
return this.id;
|
}
|
|
@Override
|
public String toString() {
|
return "SysViewLogic{" +
|
"id=" + id +
|
", type=" + type +
|
", name=" + name +
|
", clazName=" + clazName +
|
", funcName=" + funcName +
|
", active=" + active +
|
"}";
|
}
|
}
|