czt
2025-03-18 451f8ceb451519c029a0bcd0373b7b493e6265fc
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
144
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-损益单信息
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class SH2023Api1209 implements Serializable {
    /**
     *
     */
    private static final long serialVersionUID = -8778664614878279565L;
 
    @PropertyDef(label = "损溢单号")
    private String sydh;
 
    @PropertyDef(label = "货位代码")
    private String hwdm;
 
    @PropertyDef(label = "统一货位编码" )
    private String tyhwbm;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "业务日期" )
    private Date ywrq;
 
    @PropertyDef(label = "损溢类型", description = "1:损耗;2:损失;3:溢余;4:其他")
    private String sylx;
 
    @PropertyDef(label = "损溢环节", description = "1:入库损溢,2:出库损溢,3.其他")
    private String syhj;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "记账日期")
    private Date jzrq;
 
    @PropertyDef(label = "入库净重")
    private Double rkjz;
 
    @PropertyDef(label = "入库数量(公斤)")
    private double rksl;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "入库时间")
    private Date rksj;
 
    @PropertyDef(label = "入库水分")
    private Double rksf;
 
    @PropertyDef(label = "入库杂质")
    private Double rkzz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "出库时间")
    private Date cksj;
 
    @PropertyDef(label = "出库净重")
    private Double ckjz;
 
    @PropertyDef(label = "出库水分")
    private Double cksf;
 
    @PropertyDef(label = "出库杂质")
    private Double ckzz;
 
    @PropertyDef(label = "储备时长")
    private Integer ccsc;
 
    @PropertyDef(label = "实际损溢数量")
    private Double jzsysl;
 
    @PropertyDef(label = "水杂减量")
    private Double szjl;
 
    @PropertyDef(label = "自然损耗定额")
    private Double zrshde;
 
    @PropertyDef(label = "是否超耗", description = "1:是,2:否")
    private String sfch;
 
    @PropertyDef(label = "超耗数量")
    private Double chsl;
 
    @PropertyDef(label = "损益是否正常")
    private String sysfzc;
 
    @PropertyDef(label = "损溢原因")
    private String syyy;
 
    @PropertyDef(label = "出清确认标识",description = "0:未完成出清确认,1:已完成出清确认")
    private String cqqrbs;
 
    @PropertyDef(label = "出清确认时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date cqqrsj;
 
    @PropertyDef(label = "仓储审核人")
    private String ccshr;
 
    @PropertyDef(label = "质检审核人")
    private String zjshr;
 
    @PropertyDef(label = "统计审核人")
    private String tjshr;
 
    @PropertyDef(label = "会计审核人")
    private String kjshr;
 
    @PropertyDef(label = "领导审核人")
    private String ldshr;
 
    @PropertyDef(label = "备注")
    private String bz ="无";
 
    @PropertyDef(label = "单据类型")
    private String djlx;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "最后更新时间")
    private Date zhgxsj;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
    @PropertyDef(label = "标记位")
    private String bjw;
 
    @PropertyDef(label = "粮食性质代码")
    private String lsxzdm;
 
    @PropertyDef(label = "粮食品种代码")
    private String lspzdm;
 
}