YYC
2025-01-03 d7eda377a257a18bca0429d3fae2a71d4160565b
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
package com.fzzy.async.fzzy40.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.util.Date;
 
/**
 * @Desc: 仓房状态确认表
 * @author:
 * @update-time:
 */
@Data
@Entity
@Table(name = "D_DEPOT_STATUS_CONFIRM")
public class Fz40DepotStatusConfirm {
 
    /**
     * 21yyyyMMdd+四位顺序号
     * 21202405041234
     */
    @Id
    @Column(name = "fcqrdh", length = 14)
    @PropertyDef(label = "封仓确认单号", description = "根据一定的规则生成")
    private String fcqrdh;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @Column(name = "DEPT_ID_", length = 50)
    @PropertyDef(label = "库区编码")
    private String deptId;
 
    @Column(name = "DEPOT_ID_", length = 28)
    @PropertyDef(label = "货位编码")
    private String depotId;
 
    /*** ------------------------确认内容-------------------------------------**/
    @Column(name = "fcrq")
    @PropertyDef(label = "封仓日期", description = "yyyy-MM-dd")
    private Date fcrq;
 
    @Column(name = "FOOD_VARIETY_", length = 20)
    @PropertyDef(label = "粮食品种")
    private String foodVariety;
 
    @Column(name = "FOOD_TYPE_", length = 20)
    @PropertyDef(label = "粮食性质")
    private String foodType;
 
    @Column(name = "FOOD_LEVEL_", length = 10)
    @PropertyDef(label = "粮食等级")
    private String foodLevel;
 
    @Column(name = "FOOD_LOCATION_ID_", length = 20)
    @PropertyDef(label = "产地名称代码")
    private String foodLocationId;
 
    @Column(name = "FOOD_LOCATION_", length = 40)
    @PropertyDef(label = "产地名称")
    private String foodLocation;
 
    @Column(name = "FOOD_YEAR_", length = 10)
    @PropertyDef(label = "收货年度")
    private String foodYear;
 
    @Column(name = "COUNTRY_", length = 10)
    @PropertyDef(label = "国别")
    private String country;
 
    @Column(name = "STORE_KEEPER_NAME_", length = 64)
    @PropertyDef(label = "保管员", description = "中文名称")
    private String storeKeeperName;
 
    @Column(name = "fcsl")
    @PropertyDef(label = "封仓数量", description = "所有入库信息中的净重之和,单位KG")
    private Double fcsl = 0.0;
 
 
    /*** ------------------------公共字段-------------------------------------**/
 
    @Column(name = "APPLY_USER_", length = 50)
    @PropertyDef(label = "申请人")
    private String applyUser;
 
    @Column(name = "DEPT_AUDIT_USER_", length = 50)
    @PropertyDef(label = "部门审核人")
    private String deptAuditUser;
 
    @Column(name = "LEADER_AUDIT_USER_", length = 50)
    @PropertyDef(label = "领导审核人")
    private String leaderAuditUser;
 
    // 备注
    @Column(name = "REMARKS_", length = 200)
    @PropertyDef(label = "备注信息")
    private String remarks;
 
 
    @Column(name = "UPDATE_TIME_")
    @PropertyDef(label = "数据更新时间")
    private Date updateTime;
 
}