WS
2023-05-25 9149e48f78437e04725e24d98e2a75872f86d671
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
package com.fzzy.push.shjdjw2023.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 ShjdjwApi1209 implements Serializable {
 
    @PropertyDef(label = "损溢单号")
    private String sydbh;
 
    @PropertyDef(label = "单位名称")
    private String dwmc;
 
    @PropertyDef(label = "库点名称")
    private String kdmc;
 
    @PropertyDef(label = "货位代码")
    private String hwbm;
 
    @PropertyDef(label = "业务日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date ywrq;
 
    @PropertyDef(label = "入库数量")
    private Double rksl;
 
    @PropertyDef(label = "入库时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date rksj;
 
    @PropertyDef(label = "出库数量")
    private Double cksl;
 
    @PropertyDef(label = "出库时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date cksj;
 
    @PropertyDef(label = "损溢数量")
    private Double sysl;
 
    @PropertyDef(label = "损溢原因")
    private String syyy;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "入库水分")
    private Double rksf;
 
    @PropertyDef(label = "入库杂质")
    private Double rkzz;
 
    @PropertyDef(label = "出库水分")
    private Double cksf;
 
    @PropertyDef(label = "出库杂质")
    private Double ckzz;
 
    @PropertyDef(label = "年限")
    @JSONField(format = "yyyy")
    private Date nx;
 
    @PropertyDef(label = "辅损溢数量")
    private Double fsysl;
 
    @PropertyDef(label = "损耗率")
    private Double shl;
 
    @PropertyDef(label = "损益类型")
    private String sylx;
 
    @PropertyDef(label = "单据类型")
    private String djlx;
 
 
}