| | |
| | | private String intelCard; |
| | | |
| | | @Column(name = "PLATE_NUM_", length = 20) |
| | | @PropertyDef(label = "车牌号") |
| | | @PropertyDef(label = "车船号", description = "车牌号+标识符") |
| | | private String plateNum; |
| | | |
| | | @Column(name = "TRANS_TYPE_", length = 10) |
| | | @PropertyDef(label = "运输方式", description = "汽车,火车、轮船、其他") |
| | | @Column(name = "TRANS_TYPE_", length = 6) |
| | | @PropertyDef(label = "运输工具") |
| | | private String transType = TransType.TYPE_1.getCode(); |
| | | |
| | | @Column(name = "SPEC_TYPE_", length = 10) |
| | | @PropertyDef(label = "规格", description = "散粮,25kg, 50kg") |
| | | private String specType = "散粮"; |
| | | |
| | | @Column(name = "CUSTOMER_ID_", length = 40) |
| | | @PropertyDef(label = "往来单位", description = "入库时,表示发货单位,出库时候表示收货单位") |
| | |
| | | @Column(name = "FOOD_LEVEL_", length = 40) |
| | | @PropertyDef(label = "粮食等级") |
| | | private String foodLevel; |
| | | |
| | | |
| | | @Column(name = "FOOD_LOCATION_", length = 40) |
| | | @PropertyDef(label = "产地名称") |
| | |
| | | private String checkId; |
| | | |
| | | // 称重和扣重信息 |
| | | @Column(name = "IMPURITY_") |
| | | @PropertyDef(label = "杂质", description = "百分比") |
| | | private Double impurity = 0.0; |
| | | |
| | | @Column(name = "WET_") |
| | | @PropertyDef(label = "水分", description = "百分比") |
| | | private Double wet = 0.0; |
| | | // @Column(name = "IMPURITY_") |
| | | // @PropertyDef(label = "杂质", description = "百分比") |
| | | // private Double impurity = 0.0; |
| | | // |
| | | // @Column(name = "WET_") |
| | | // @PropertyDef(label = "水分", description = "百分比") |
| | | // private Double wet = 0.0; |
| | | |
| | | @Column(name = "DE_IMPURITY_") |
| | | @PropertyDef(label = "杂质扣重", description = "单位KG") |
| | |
| | | private String settleTag = Constant.YN_N; |
| | | |
| | | |
| | | @Column(name = "SPEC_TYPE_", length = 10) |
| | | @PropertyDef(label = "规格", description = "散粮,25kg, 50kg") |
| | | private String specType = "散粮"; |
| | | |
| | | //--------版本4.0调整字段 --------------// |
| | | // @Column(name = "jsdh", length = 42) |
| | | // @PropertyDef(label = "结算单号") |
| | |
| | | // @Column(name = "bzbjs", length = 2) |
| | | // @PropertyDef(label = "包件数", description = "单位:件") |
| | | // private int bzbjs; |
| | | |
| | | |
| | | |
| | | |
| | | @Override |