| | |
| | | //12 位数字组成,第 1-2 位为业务代码(14代表粮食入库),第 3-8 位依次为年份的后两位、2 位月份、2 位日期,后四位为顺序码。例如:141605041234 |
| | | @Id |
| | | @PropertyDef(label = "入库业务单号") |
| | | @Column(name = "rkywdh", length = 12, nullable = false) |
| | | @Column(name = "rkywdh", length = 12) |
| | | private String rkywdh; |
| | | |
| | | @PropertyDef(label = "货位代码") |
| | | @Column(name = "hwdm", length = 30, nullable = false) |
| | | @Column(name = "hwdm", length = 30) |
| | | private String hwdm; |
| | | |
| | | @PropertyDef(label = "统一货位编码" ) |
| | | @Column(name = "tyhwbm", length = 28) |
| | | private String tyhwbm; |
| | | |
| | | @PropertyDef(label = "业务类型", description = "2:入库(默认)") |
| | | @Column(name = "ywlx", length = 1) |
| | |
| | | private String cchlx; |
| | | |
| | | @PropertyDef(label = "挂车号") |
| | | @Column(name = "gch", length = 7) |
| | | @Column(name = "gch", length = 32) |
| | | private String gch; |
| | | |
| | | @PropertyDef(label = "装粮地点") |