YYC
2025-08-27 dccec595343177f7bbcf0a9b977c5dca4a0d08fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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;
 
}