ws
2024-10-25 530325a557add297d6dfea508f605c93681c7921
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
package com.fzzy.push.gd2023.dto;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-库区信息
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Gd2023Api1102 implements Serializable {
 
    /**
     *
     */
    private static final long serialVersionUID = 6597930270077627879L;
 
    @PropertyDef(label = "库区代码")
    private String kqdm;
 
    @PropertyDef(label = "统一库区编码")
    private String tykqbm;
 
    @PropertyDef(label = "单位代码")
    private String dwdm;
 
    @PropertyDef(label = "统一单位代码")
    private String tydwbm;
 
    @PropertyDef(label = "库区名称")
    private String kqmc;
 
    @PropertyDef(label = "库区地址")
    private String kqdz;
 
    @PropertyDef(label = "行政区划代码")
    private String xzqhdm;
 
    @PropertyDef(label = "库区产权", description = "1: 自有 2:租赁 3:共有 4:混合 9:其他")
    private Integer kqcq;
 
    @PropertyDef(label = "有效仓容")
    private Double yxcr;
 
    @PropertyDef(label = "有效罐容")
    private Double yxgr;
 
    @PropertyDef(label = "占地面积")
    private Double zdmj;
 
    @PropertyDef(label = "仓房数")
    @Column(name = "cfs")
    private Integer cfs;
 
    @PropertyDef(label = "油罐数")
    private Integer ygs;
 
    @PropertyDef(label = "库区经度")
    private Double jd;
 
    @PropertyDef(label = "库区纬度")
    private Double wd;
 
    @PropertyDef(label = "库区状态", description = "1:正常(默认) 2:退出储备粮承储")
    private String kqzt;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date zhgxsj;
 
    @PropertyDef(label = "海康区域ID", description = "对应海康视频平台regionIndexCode字段")
    private String hkRegionId;
 
    @PropertyDef(label = "产权方库区代码", description = "自有产权时库区代码必须等于产权方库区代码,非自有产权时库区代码不能等于产权方库区代码")
    private String cqfkqdm;
}