All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.founder.core.domain.GsUdi Maven / Gradle / Ivy
package com.founder.core.domain;
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
import java.util.Date;
@ApiModel(value = "gs_udi", description = "通用档案产品")
@TableName(value = "gs_udi")
public class GsUdi implements Serializable {
@ApiModelProperty(value = "主键", required = true, position = 1)
@TableId(value = "id_udi", type = IdType.ASSIGN_UUID)
private String id_udi;//varchar](20) NOT NULL,
@ApiModelProperty(value = "集团", position = 2)
private String id_grp;//varchar](20) NULL,
@ApiModelProperty(value = "组织", position = 3)
private String id_org;//varchar](20) NULL,
@ApiModelProperty(value = "唯一编码", position = 4)
private String code;//varchar](100) NOT NULL,
@ApiModelProperty(value = "名称", position = 5)
private String name;//varchar](1000) NOT NULL,
@ApiModelProperty(value = "拼音码", position = 6)
private String pycode;//varchar](100) NULL,
@ApiModelProperty(value = "五笔码", position = 7)
private String wbcode;//varchar](100) NULL,
@ApiModelProperty(value = "自定义码", position = 8)
private String mnecode;//varchar](100) NULL,
@ApiModelProperty(value = "描述", position = 9)
private String des;//varchar](4000) NULL,
@ApiModelProperty(value = "备注1", position = 10)
private String ctrl1;//varchar](4000) NULL,
@ApiModelProperty(value = "备注2", position = 11)
private String ctrl2;//varchar](4000) NULL,
@ApiModelProperty(value = "备注3", position = 12)
private String ctrl3;//varchar](4000) NULL,
@ApiModelProperty(value = "备注4", position = 13)
private String ctrl4;//varchar](4000) NULL,
@ApiModelProperty(value = "备注5", position = 14)
private String ctrl5;//varchar](4000) NULL,
@TableField(fill = FieldFill.INSERT)
@ApiModelProperty(value = "创建时间", position = 15)
private Date create_time;
@TableField(fill = FieldFill.INSERT_UPDATE)
@ApiModelProperty(value = "更新时间", position = 16)
private Date update_time;
public String getId_udi() {
return id_udi;
}
public void setId_udi(String id_udi) {
this.id_udi = id_udi;
}
public String getId_grp() {
return id_grp;
}
public void setId_grp(String id_grp) {
this.id_grp = id_grp;
}
public String getId_org() {
return id_org;
}
public void setId_org(String id_org) {
this.id_org = id_org;
}
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 getPycode() {
return pycode;
}
public void setPycode(String pycode) {
this.pycode = pycode;
}
public String getWbcode() {
return wbcode;
}
public void setWbcode(String wbcode) {
this.wbcode = wbcode;
}
public String getMnecode() {
return mnecode;
}
public void setMnecode(String mnecode) {
this.mnecode = mnecode;
}
public String getDes() {
return des;
}
public void setDes(String des) {
this.des = des;
}
public String getCtrl1() {
return ctrl1;
}
public void setCtrl1(String ctrl1) {
this.ctrl1 = ctrl1;
}
public String getCtrl2() {
return ctrl2;
}
public void setCtrl2(String ctrl2) {
this.ctrl2 = ctrl2;
}
public String getCtrl3() {
return ctrl3;
}
public void setCtrl3(String ctrl3) {
this.ctrl3 = ctrl3;
}
public String getCtrl4() {
return ctrl4;
}
public void setCtrl4(String ctrl4) {
this.ctrl4 = ctrl4;
}
public String getCtrl5() {
return ctrl5;
}
public void setCtrl5(String ctrl5) {
this.ctrl5 = ctrl5;
}
public Date getCreate_time() {
return create_time;
}
public void setCreate_time(Date create_time) {
this.create_time = create_time;
}
public Date getUpdate_time() {
return update_time;
}
public void setUpdate_time(Date update_time) {
this.update_time = update_time;
}
}