czt
2025-11-08 edb0ae72155f3c0454ecbe4f089975b1320d8b88
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
package com.fzzy.async.fzzy61.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
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 2025/11/04 20:18
 */
@Data
@Entity
@Table(name = "D_INOUT_COST_VERIFY")
public class Fz61InoutCostVerify implements Serializable {
 
    public static String SORT_PROP = "rkhddh";
 
    @Id
    @PropertyDef(label = "入库核定单号", description = "验收申请日期yyyyMMdd + 4位顺序号")
    @Column(name = "rkhddh", length = 14)
    private String rkhddh;
 
    @Column(name = "COMPANY_ID_", length = 10)
    @PropertyDef(label = "组织编码")
    private String companyId;
 
    @Column(name = "DEPT_ID_", length = 20)
    @PropertyDef(label = "所属分库")
    private String deptId;
 
    @Column(name = "DEPOT_ID_", length = 30)
    @PropertyDef(label = "仓库编码", description = "目前上海使用")
    private String depotId;
 
    @PropertyDef(label = "储粮品种代码" )
    @Column(name = "lspzdm", length = 7)
    private String lspzdm;
 
    @PropertyDef(label = "核定单价" )
    @Column(name = "hddj", precision = 20, scale = 3)
    private Double hddj;
 
    @PropertyDef(label = "核定数量" )
    @Column(name = "hdsl", precision = 20, scale = 3)
    private Double hdsl;
 
    @PropertyDef(label = "粮食性质" )
    @Column(name = "lsxz", length = 3)
    private String lsxz;
 
    @PropertyDef(label = "填报单位" )
    @Column(name = "tbdw", length = 512)
    private String tbdw;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "填报时间")
    @Column(name = "tbsj")
    private Date tbsj;
 
    @PropertyDef(label = "单位负责人")
    @Column(name = "dwfzr", length = 512)
    private String dwfzr;
 
    @PropertyDef(label = "填报人")
    @Column(name = "tbr", length = 512)
    private String tbr;
 
    @PropertyDef(label = "备注")
    @Column(name = "REMARKS_", length = 512)
    private String remarks;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
}