package cn.autoform.db.entity;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
public class MasterDefineEntity implements Serializable {
|
|
/**
|
* serialVersionUID
|
*/
|
private static final long serialVersionUID = 8401789037470019775L;
|
|
Integer id = null;
|
String code = "";
|
String name = "";
|
String description = "";
|
String type = "";
|
Integer del_flag = 0;
|
String def1 = "";
|
String def2 = "";
|
String def3 = "";
|
String def4 = "";
|
String def5 = "";
|
Integer ins_p = null;
|
Timestamp ins_t = null;
|
Integer upd_p = null;
|
Timestamp upd_t = null;
|
Long tenant_id = null;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public Integer getDel_flag() {
|
return del_flag;
|
}
|
|
public void setDel_flag(Integer del_flag) {
|
this.del_flag = del_flag;
|
}
|
|
public String getDef1() {
|
return def1;
|
}
|
|
public void setDef1(String def1) {
|
this.def1 = def1;
|
}
|
|
public String getDef2() {
|
return def2;
|
}
|
|
public void setDef2(String def2) {
|
this.def2 = def2;
|
}
|
|
public String getDef3() {
|
return def3;
|
}
|
|
public void setDef3(String def3) {
|
this.def3 = def3;
|
}
|
|
public String getDef4() {
|
return def4;
|
}
|
|
public void setDef4(String def4) {
|
this.def4 = def4;
|
}
|
|
public String getDef5() {
|
return def5;
|
}
|
|
public void setDef5(String def5) {
|
this.def5 = def5;
|
}
|
|
public Integer getIns_p() {
|
return ins_p;
|
}
|
|
public void setIns_p(Integer ins_p) {
|
this.ins_p = ins_p;
|
}
|
|
public Timestamp getIns_t() {
|
return ins_t;
|
}
|
|
public void setIns_t(Timestamp ins_t) {
|
this.ins_t = ins_t;
|
}
|
|
public Integer getUpd_p() {
|
return upd_p;
|
}
|
|
public void setUpd_p(Integer upd_p) {
|
this.upd_p = upd_p;
|
}
|
|
public Timestamp getUpd_t() {
|
return upd_t;
|
}
|
|
public void setUpd_t(Timestamp upd_t) {
|
this.upd_t = upd_t;
|
}
|
|
public Long getTenant_id() {
|
return tenant_id;
|
}
|
|
public void setTenant_id(Long tenant_id) {
|
this.tenant_id = tenant_id;
|
}
|
}
|