jiazx0107@163.com
2023-12-24 8efb5a8cd2c8a6b40e58f4f3fb851d54cf415af9
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
package com.fzzy.push.shjdjw2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
 
@Data
public class ShjdjwApi1310 implements Serializable {
 
    @PropertyDef(label = "质检报告单号")
    @JsonProperty("Zjbgdbh")
    private String zjbgdbh;
 
    @PropertyDef(label = "单位名称")
    private String dwmc;
 
    @PropertyDef(label = "库点名称")
    private String kdmc;
 
    @PropertyDef(label = "仓房名称")
    private String cfmc;
 
    @PropertyDef(label = "廒间名称")
    private String ajmc;
 
    @PropertyDef(label = "粮食品种代码")
    private String pznm;
 
    @PropertyDef(label = "粮食等级代码")
    private String skdjbm;
 
    @PropertyDef(label = "入库日期")
    @JSONField(format = "yyyy-MM-dd")
    private Date rkrq;
 
    @PropertyDef(label = "检验类别")
    private String jylbbm;
 
    @PropertyDef(label = "检验单位")
    private String jydw;
 
    @PropertyDef(label = "检验依据")
    private String jyyj;
 
    @PropertyDef(label = "指标类别")
    private String zblb;
 
    @PropertyDef(label = "检验项目")
    private String jyxm;
 
    @PropertyDef(label = "检验结论")
    private String jyjl;
 
    @PropertyDef(label = "指标结果判定")
    private String zlzbjgpd;
 
    @PropertyDef(label = "扦样时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date qysj;
 
    @PropertyDef(label = "是否正常存储年限")
    private String sfzcccnx;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "入库年限")
    private Integer rknx;
 
    @PropertyDef(label = "检验时间")
    private Date jysj;
 
    @PropertyDef(label = "品种名称")
    private String wlzhmc;
 
    @PropertyDef(label = "粮食性质")
    private String lsxz;
 
    @PropertyDef(label = "食品安全指标质检结果")
    private String spaqzjjg;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
}