YYC
2024-12-23 3697ca81ae651e6087706668744f5b67535f9f40
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package com.fzzy.api.entity;
 
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
 
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * 接口表-账面库存
 */
@Data
@Entity
@Table(name = "API_1211")
@EqualsAndHashCode(callSuper = false)
public class Api1211 implements Serializable {
    
    public static String SORT_PROP = "ywrq";
 
    /**
     * 
     */
    private static final long serialVersionUID = -1776570569716204990L;
    
    @JSONField(serialize = false)
    @Id
    @Column(name = "id", length = 60)
    private String id;
 
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
 
    @PropertyDef(label = "库区代码")
    @Column(name = "kqdm", length = 21)
    private String kqdm;
 
    @PropertyDef(label = "统一库区编码")
    @Column(name = "tykqbm", length = 22)
    private String tykqbm;
 
    @PropertyDef(label = "货位代码", description = "目前上海使用")
    @Column(name = "hwdm", length = 30)
    private String hwdm;
 
    @PropertyDef(label = "粮食性质代码", description = "目前上海使用")
    @Column(name = "lsxzdm", length = 7)
    private String lsxzdm;
 
    @PropertyDef(label = "粮食品种代码")
    @Column(name = "lspzdm", length = 7)
    private String lspzdm;
 
    @PropertyDef(label = "年度" )
    @Column(name = "nd", length = 4)
    private String nd;
 
    @PropertyDef(label = "月份" )
    @Column(name = "yf", length = 2)
    private String yf;
 
    @PropertyDef(label = "期初数量(公斤)" )
    @Column(name = "qcsl", precision = 20, scale = 6)
    private Double qcsl;
 
    @PropertyDef(label = "本期收入数量(公斤)" )
    @Column(name = "bqsrsl", precision = 20, scale = 6)
    private Double bqsrsl;
 
    @PropertyDef(label = "本期支出数量(公斤)" )
    @Column(name = "bqzcsl", precision = 20, scale = 6)
    private Double bqzcsl;
 
    @PropertyDef(label = "期末数量(公斤)" )
    @Column(name = "qmye", precision = 20, scale = 6)
    private Double qmye;
 
    @PropertyDef(label = "月结标志" )
    @Column(name = "yjbz")
    private Integer yjbz;
 
    @JSONField(format = "yyyy-MM-dd")
    @PropertyDef(label = "业务日期" )
    @Column(name = "ywrq")
    private Date ywrq;
 
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1)
    private String czbz;
 
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @PropertyDef(label = "更新时间" )
    @Column(name = "zhgxsj")
    private Date zhgxsj;
 
 
}