czt
2024-11-25 5c39705408824d92ec5fcc261b9cb618dc3cf65d
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
package com.fzzy.push.sh2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * @Description 数据相符性接口
 * @Author CZT
 * @Date 2024/6/28 15:35
 */
@Data
public class SH2023Api1115 implements Serializable {
 
    private static final long serialVersionUID = 9157617424050247565L;
 
    @PropertyDef(label = "库区代码")
    private String kqdm;
 
    @PropertyDef(label = "库区名称" )
    private String kqmc;
 
    @PropertyDef(label = "上级单位名称")
    private String sjdwmc;
 
    @PropertyDef(label = "仓房数")
    private String cfs;
 
    @PropertyDef(label = "廒间数")
    private String ajs;
 
    @PropertyDef(label = "货位数")
    private String hws;
 
    @PropertyDef(label = "入库检斤条数")
    private String rkts;
 
    @PropertyDef(label = "出库检斤条数")
    private String ckts;
 
    @PropertyDef(label = "库存数量")
    private String kcsl;
 
    @PropertyDef(label = "库存条数")
    private String kcts;
 
    @PropertyDef(label = "上传粮情廒间数")
    private String sclqajs;
 
    @PropertyDef(label = "上传仓内图像廒间数")
    private String sccntxajs;
 
    @PropertyDef(label = "数据统计时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date sjtjsj;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
    @PropertyDef(label = "标记位")
    private String bjw;
}