| | |
| | | */ |
| | | private static final long serialVersionUID = -6381473449862569451L; |
| | | |
| | | |
| | | public static String SORT_PROP = "ckywdh"; |
| | | |
| | | |
| | | @JSONField(serialize = false) |
| | | @Id |
| | | @Column(name = "id", length = 40) |
| | | private String id; |
| | | |
| | | //业务单号由 12 位数字组成,第 1-2 位为业务编码(15 代表粮食出库),第 3-8 位依次为年份的后两位、2 位月份、2位日期,后四位为顺序码。例如:141605041234 |
| | | @Id |
| | | @PropertyDef(label = "出库业务单号") |
| | | @Column(name = "ckywdh", length = 12) |
| | | private String ckywdh; |
| | |
| | | @PropertyDef(label = "货位代码") |
| | | @Column(name = "hwdm", length = 30) |
| | | private String hwdm; |
| | | |
| | | @PropertyDef(label = "计划明细号") |
| | | @Column(name = "jhmxh", length = 50) |
| | | private String jhmxh; |
| | | |
| | | @PropertyDef(label = "出库通知单号") |
| | | @Column(name = "cktzdh", length = 32) |
| | |
| | | @Column(name = "cddm", length = 6) |
| | | private String cddm; |
| | | |
| | | @PropertyDef(label = "检斤类型", description = "0:称重入库(默认)1:标准包入库") |
| | | @Column(name = "jjlx", length = 1) |
| | | private String jjlx = "0"; |
| | | |
| | | @PropertyDef(label = "皮重(公斤)") |
| | | @Column(name = "pz", precision = 20, scale = 6) |
| | | private double pz; |