package com.fzzy.api.entity;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import javax.persistence.Column;
|
import javax.persistence.Entity;
|
import javax.persistence.Id;
|
import javax.persistence.Table;
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @Description 统一编码实体类
|
* @Author CZT
|
* @Date 2024/4/18 9:56
|
*/
|
@Data
|
@Entity
|
@Table(name = "GB_UNIFIED_CODING")
|
public class GbUnifiedCoding implements Serializable {
|
|
@Id
|
@PropertyDef(label = "廒间编码")
|
@Column(name = "ajdm", length = 40)
|
private String ajdm;
|
|
@PropertyDef(label = "廒间名称")
|
@Column(name = "ajmc", length = 100)
|
private String ajmc;
|
|
@PropertyDef(label = "单位名称")
|
@Column(name = "dwmc", length = 200)
|
private String dwmc;
|
|
@PropertyDef(label = "单位编码")
|
@Column(name = "frdwdm", length = 40)
|
private String frdwdm;
|
|
@PropertyDef(label = "企业性质")
|
@Column(name = "qyxz", length = 10)
|
private String qyxz;
|
|
@PropertyDef(label = "库区名称")
|
@Column(name = "kqmc", length = 100)
|
private String kqmc;
|
|
@PropertyDef(label = "库区编码")
|
@Column(name = "kqdm", length = 40)
|
private String kqdm;
|
|
@PropertyDef(label = "仓房编码")
|
@Column(name = "cfdm", length = 40)
|
private String cfdm;
|
|
@PropertyDef(label = "仓房名称")
|
@Column(name = "cfmc", length = 100)
|
private String cfmc;
|
|
@PropertyDef(label = "创建时间")
|
@Column(name = "createTime")
|
private Date createTime;
|
|
@PropertyDef(label = "上级单位名称")
|
@Column(name = "sjDeptName", length = 200)
|
private String sjDeptName;
|
|
@PropertyDef(label = "更新时间")
|
@Column(name = "updateTime")
|
private Date updateTime;
|
|
}
|