| | |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | import javax.persistence.*; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 出入库结算,2023年5月26日,根据新国粮规优化调整 |
| | |
| | | @PropertyDef(label = "合同名称", description = "针对轮换粮食必填") |
| | | private String contractName; |
| | | |
| | | @Column(name = "CUSTOMER_NAME_", length = 50) |
| | | @PropertyDef(label = "客户名称", description = "针对轮换粮食必填") |
| | | private String customerName; |
| | | |
| | | // 结算信息 |
| | | @Column(name = "PAY_PRICE_") |
| | | @PropertyDef(label = "单价") |
| | |
| | | private String payee; |
| | | |
| | | @Column(name = "PAYEE_ID_") |
| | | @PropertyDef(label = "收款人省份证号") |
| | | @PropertyDef(label = "收款人身份证号") |
| | | private String payeeId; |
| | | |
| | | @Column(name = "BANK_CATEGORY_", length = 10) |
| | |
| | | @Column(name = "PAY_USER_", length = 40) |
| | | @PropertyDef(label = "付款操作人") |
| | | private String payUser; |
| | | |
| | | |
| | | @Column(name = "fphm", length = 10) |
| | | @PropertyDef(label = "发票号码") |
| | | private String fphm; |
| | | |
| | | @Column(name = "fpzt", length = 10) |
| | | @PropertyDef(label = "发票状态",description = "1:正常,0:作废") |
| | | private String fpzt; |
| | | |
| | | @Column(name = "REMARKS_", length = 200) |
| | | @PropertyDef(label = "备注信息") |
| | | private String remarks; |
| | | |
| | | @Column(name = "INOUT_RECORD_ID_", length = 40) |
| | | @PropertyDef(label = "流水号", description = "根据一定的规则生成") |
| | | private String inoutRecordId; |
| | | |
| | | @Column(name = "UPDATE_TIME_") |
| | | @PropertyDef(label = "数据更新时间") |
| | | private Date updateTime; |
| | | |
| | | /** |
| | | * 系统内业务使用,只有单车结算赋值 |
| | | */ |
| | | @Column(name = "PLATE_NUM_", length = 20) |
| | | @PropertyDef(label = "车船号", description = "车牌号+标识符") |
| | | private String plateNum; |
| | | |
| | | @Column(name = "FOOD_VARIETY_", length = 20) |
| | | @PropertyDef(label = "粮食品种") |
| | | private String foodVariety; |
| | | |
| | | |
| | | } |