| | |
| | | |
| | | @Id |
| | | @Column(name = "ID_", length = 40) |
| | | @PropertyDef(label = "药剂编号", description = "库区代码+三位顺序号") |
| | | @PropertyDef(label = "药剂编号", description = "采购日期(yyyyMMdd)+三位顺序号") |
| | | private String id; |
| | | |
| | | @Id |
| | | @Column(name = "DEPT_ID_", length = 50) |
| | | @PropertyDef(label = "库区代码") |
| | | private String deptId; |
| | | |
| | | @Id |
| | | @Column(name = "cgrq") |
| | | @PropertyDef(label = "采购日期") |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | |
| | | |
| | | @Column(name = "COUNT_") |
| | | @PropertyDef(label = "库存量") |
| | | private int count = 0; |
| | | private Double count = 0.0; |
| | | |
| | | @Column(name = "kcsldw", length = 1) |
| | | @PropertyDef(label = "库存量单位", description = "1(默认):公斤;2:克;3:毫升;") |