YYC
2023-09-01 0c2744bd5fce13f018e0b5163c70fa1bc76ed36c
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
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.util.Date;
 
/**
 * 粮食库存数据封装
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class ShjdjwApi1208 {
 
    @PropertyDef(label = "单位名称")
    private String dwmc;
 
    @PropertyDef(label = "仓房名称")
    private String cfmc;
 
    @PropertyDef(label = "廒间名称")
    private String ajmc;
 
    @PropertyDef(label = "粮食品种代码")
    private String lspzbm;
 
    @PropertyDef(label = "粮食性质代码")
    private String lsxzbm;
 
    @PropertyDef(label = "粮食等级代码")
    private String djbm;
 
    @PropertyDef(label = "收获年度")
    private String shnd;
 
    @PropertyDef(label = "国别")
    private String gb;
 
    @PropertyDef(label = "产地")
    private String cd;
 
    @PropertyDef(label = "粮权归属单位代码")
    private String lqgsdwbm;
 
    @PropertyDef(label = "管理方式")
    private String glfs;
 
    @PropertyDef(label = "库存监测时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    private Date kcjcsj;
 
    @PropertyDef(label = "期末库存")
    private Double qmkc;
 
    @PropertyDef(label = "操作标志")
    private String czbz;
 
    @PropertyDef(label = "实际数量")
    private Double sjsl;
 
    @PropertyDef(label = "年初库存")
    private Double ncye;
 
    @PropertyDef(label = "期初库存")
    private Double qckc;
 
    @PropertyDef(label = "本期收入")
    private Double bqsr;
 
    @PropertyDef(label = "本期支出")
    private Double bqzc;
 
    @PropertyDef(label = "质量情况")
    private String zlqk;
 
    @PropertyDef(label = "质检报告单内码")
    private String zjbgdnm;
 
    @PropertyDef(label = "批次号")
    private String pch;
 
}