YYC
2023-09-05 a09c9a9e8d9fe49b2c4bd84e43d3d092175592ee
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-损溢单
 */
@Data
@Entity
@Table(name = "API_1209")
@EqualsAndHashCode(callSuper = false)
public class Api1209 extends ApiParent implements Serializable {
 
    /**
     * 
     */
    private static final long serialVersionUID = -8920645721282111145L;
    
    
    public static String SORT_PROP = "sydh";
    
 
    @Id
    @PropertyDef(label = "损溢单号" )
    @Column(name = "sydh", length = 41)
    private String sydh;
 
    @PropertyDef(label = "货位代码" )
    @Column(name = "hwdm", length = 30)
    private String hwdm;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "业务日期" )
    @Column(name = "ywrq")
    private Date ywrq;
 
    @PropertyDef(label = "入库净重(公斤)" )
    @Column(name = "rkjz", precision = 20, scale = 6)
    private double rkjz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "入库时间" )
    @Column(name = "rksj")
    private Date rksj;
 
    @PropertyDef(label = "入库水分(%)" )
    @Column(name = "rksf", precision = 20, scale = 6)
    private double rksf;
 
    @PropertyDef(label = "入库杂质(%)" )
    @Column(name = "rkzz", precision = 20, scale = 6)
    private double rkzz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "出库时间" )
    @Column(name = "cksj")
    private Date cksj;
 
    @PropertyDef(label = "出库净重(公斤)" )
    @Column(name = "ckjz", precision = 20, scale = 6)
    private double ckjz;
 
    @PropertyDef(label = "出库水分(%)" )
    @Column(name = "cksf", precision = 20, scale = 6)
    private double cksf;
 
    @PropertyDef(label = "出库杂质(%)" )
    @Column(name = "ckzz", precision = 20, scale = 6)
    private double ckzz;
 
    @PropertyDef(label = "净重损溢数量(公斤)" )
    @Column(name = "jzsysl", precision = 20, scale = 6)
    private double jzsysl;
 
    @PropertyDef(label = "其中:成货位前损耗(公斤)" )
    @Column(name = "qzchwqsh", precision = 20, scale = 6)
    private double qzchwqsh;
 
    @PropertyDef(label = "其中水杂减量(公斤)" )
    @Column(name = "qzszkl", precision = 20, scale = 6)
    private double qzszkl;
 
    @PropertyDef(label = "其中:自然损耗定额(公斤)" )
    @Column(name = "qzzrshde", precision = 20, scale = 6)
    private double qzzrshde;
 
    @PropertyDef(label = "超耗数量(公斤)" )
    @Column(name = "chsl", precision = 20, scale = 6)
    private double chsl;
 
    @PropertyDef(label = "损益是否正常" )
    @Column(name = "sysfzc", length = 1)
    private String sysfzc;
 
    @PropertyDef(label = "损溢原因" )
    @Column(name = "syyy", length = 400)
    private String syyy;
 
    @PropertyDef(label = "仓储审核人" )
    @Column(name = "ccshr", length = 64)
    private String ccshr;
 
    @PropertyDef(label = "质检审核人" )
    @Column(name = "zjshr", length = 64)
    private String zjshr;
 
    @PropertyDef(label = "统计审核人" )
    @Column(name = "tjshr", length = 64)
    private String tjshr;
 
    @PropertyDef(label = "会计审核人" )
    @Column(name = "kjshr", length = 64)
    private String kjshr;
 
    @PropertyDef(label = "领导审核人" )
    @Column(name = "ldshr", length = 64)
    private String ldshr;
 
    @PropertyDef(label = "备注" )
    @Column(name = "bz", length = 400)
    private String bz;
 
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "更新时间")
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}