| | |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | |
| | | import lombok.Data; |
| | |
| | | |
| | | @PropertyDef(label = "保质期") |
| | | @Column(name = "bzq", length = 20) |
| | | private String bzq; |
| | | @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8") |
| | | private Date bzq; |
| | | |
| | | @PropertyDef(label = "采购日期") |
| | | @JSONField(format = "yyyy-MM-dd") |
| | |
| | | @Column(name = "kcsl", precision = 20, scale = 6) |
| | | private Double kcsl; |
| | | |
| | | @Column(name = "kcsldw", length = 1) |
| | | @PropertyDef(label = "库存量单位", description = "1(默认):公斤;2:克;3:毫升;") |
| | | private String kcsldw; |
| | | |
| | | @PropertyDef(label = "操作标志") |
| | | @Column(name = "czbz", length = 1) |
| | | private String czbz; |