| | |
| | | |
| | | @JSONField(serialize = false) |
| | | @Id |
| | | @GeneratedValue(strategy = GenerationType.IDENTITY) |
| | | @Column(name = "id") |
| | | private Integer id; |
| | | @Column(name = "id", length = 60) |
| | | private String id; |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "业务id") |
| | |
| | | @Column(name = "lsxzdm", length = 7) |
| | | private String lsxzdm; |
| | | |
| | | @PropertyDef(label = "粮食品种代码",required=true) |
| | | @PropertyDef(label = "粮食品种代码") |
| | | @Column(name = "lspzdm", length = 7) |
| | | private String lspzdm; |
| | | |
| | | @PropertyDef(label = "年度" ,required=true) |
| | | @PropertyDef(label = "年度" ) |
| | | @Column(name = "nd", length = 4) |
| | | private String nd; |
| | | |
| | | @PropertyDef(label = "月份" ,required=true) |
| | | @PropertyDef(label = "月份" ) |
| | | @Column(name = "yf", length = 2) |
| | | private String yf; |
| | | |
| | | @PropertyDef(label = "期初数量(公斤)",required=true ) |
| | | @PropertyDef(label = "期初数量(公斤)" ) |
| | | @Column(name = "qcsl", precision = 20, scale = 6) |
| | | private double qcsl; |
| | | private Double qcsl; |
| | | |
| | | @PropertyDef(label = "本期收入数量(公斤)" ) |
| | | @Column(name = "bqsrsl", precision = 20, scale = 6) |
| | | private double bqsrsl; |
| | | private Double bqsrsl; |
| | | |
| | | @PropertyDef(label = "本期支出数量(公斤)" ) |
| | | @Column(name = "bqzcsl", precision = 20, scale = 6) |
| | | private double bqzcsl; |
| | | private Double bqzcsl; |
| | | |
| | | @PropertyDef(label = "期末数量(公斤)" ) |
| | | @Column(name = "qmye", precision = 20, scale = 6) |
| | | private double qmye; |
| | | private Double qmye; |
| | | |
| | | @PropertyDef(label = "月结标志" ) |
| | | @Column(name = "yjbz") |