| | |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * 出入库数据记录,当前记录包括 入库信息和出入库信息, |
| | | * @Desc: 出入库流水表,根据新国粮规调整优化字段 |
| | | * |
| | | * @author: Andy |
| | | * @update-time: 2023/5/26 |
| | | * |
| | | */ |
| | | @Data |
| | | @Entity |
| | |
| | | private String companyId; |
| | | |
| | | @Column(name = "DEPT_ID_", length = 50) |
| | | @PropertyDef(label = "部门ID", description = "用于区分部门") |
| | | @PropertyDef(label = "库区编码") |
| | | private String deptId; |
| | | |
| | | @Column(name = "NOTICE_ID_", length = 40) |
| | |
| | | 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 |