All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.core.domain.GsUdiDoc Maven / Gradle / Ivy

The newest version!
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_udidoc")
public class GsUdiDoc implements Serializable {

    @ApiModelProperty(value = "通用字典主键", required = true)
    @TableId(type = IdType.ASSIGN_UUID)
    private String id_udidoc;//varchar](20) NOT NULL,

    @ApiModelProperty(value = "集团")
    private String id_grp;//varchar](20) NULL,

    @ApiModelProperty(value = "组织")
    private String id_org;//varchar](20) NULL,

    @ApiModelProperty(value = "通用字典产品主键")
    private String id_udi;//varchar](20) NOT NULL,

    @ApiModelProperty(value = "通用字典类型主键")
    private String id_udidoclist;//varchar](20) NOT NULL,

    @ApiModelProperty(value = "唯一编码")
    private String code;//varchar](100) NOT NULL,

    @ApiModelProperty(value = "名称")
    private String name;//varchar](1000) NOT NULL,

    @ApiModelProperty(value = "拼音码")
    private String pycode;//varchar](100) NULL,

    @ApiModelProperty(value = "五笔码")
    private String wbcode;//varchar](100) NULL,

    @ApiModelProperty(value = "自定义码")
    private String mnecode;//varchar](100) NULL,

    @ApiModelProperty(value = "描述")
    private String des;//varchar](4000) NULL,

    @ApiModelProperty(value = "备注1")
    private String ctrl1;//varchar](4000) NULL,

    @ApiModelProperty(value = "备注2")
    private String ctrl2;//varchar](4000) NULL,

    @ApiModelProperty(value = "备注3")
    private String ctrl3;//varchar](4000) NULL,

    @ApiModelProperty(value = "备注4")
    private String ctrl4;//varchar](4000) NULL,

    @ApiModelProperty(value = "备注5")
    private String ctrl5;//varchar](4000) NULL,

    @TableField(fill = FieldFill.INSERT)
    @ApiModelProperty(value = "创建时间")
    private Date create_time;

    @TableField(fill = FieldFill.INSERT_UPDATE)
    @ApiModelProperty(value = "更新时间")
    private Date update_time;

    public String getId_udidoc() {
        return id_udidoc;
    }

    public void setId_udidoc(String id_udidoc) {
        this.id_udidoc = id_udidoc;
    }

    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 getId_udi() {
        return id_udi;
    }

    public void setId_udi(String id_udi) {
        this.id_udi = id_udi;
    }

    public String getId_udidoclist() {
        return id_udidoclist;
    }

    public void setId_udidoclist(String id_udidoclist) {
        this.id_udidoclist = id_udidoclist;
    }

    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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy