WS
2023-05-14 fca93a39f72035502670f655a478df991a163e6d
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
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 ShjdjwApi1403 implements Serializable {
 
 
    @PropertyDef(label = "轮换计划单号")
    private String jhbm;
 
    @PropertyDef(label = "计划年度")
    private String jhnd;
 
    @PropertyDef(label = "开始执行日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date kszxrq;
 
    @PropertyDef(label = "截止执行日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date jzzxrq;
 
    @PropertyDef(label = "计划下达单位")
    private String jhxddw;
 
    @PropertyDef(label = "计划下达时间")
    @JSONField(format = "yyyy-MM-dd")
    private Date jhxdsj;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "计划名称")
    private String jhmc;
 
    @PropertyDef(label = "品种")
    private String wlzhmc;
 
    @PropertyDef(label = "收获年度")
    private String shnd;
 
    @PropertyDef(label = "实际完成日期")
    private String sjwcrq;
 
    @PropertyDef(label = "计划状态")
    private String jhbz;
 
    @PropertyDef(label = "轮入轮出类型")
    private String lrlclx;
 
    @PropertyDef(label = "轮入数量")
    private Double lrsl;
 
    @PropertyDef(label = "轮出数量")
    private Double lcsl;
 
    @PropertyDef(label = "收购数量")
    private Double sgsl;
 
    @PropertyDef(label = "销售数量")
    private Double xssl;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
}