| | |
| | | |
| | | 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; |
| | | |
| | | import javax.persistence.*; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | @Column(name = "kqdm", length = 21) |
| | | private String kqdm; |
| | | |
| | | @PropertyDef(label = "统一库区编码") |
| | | @Column(name = "tykqbm", length = 22) |
| | | private String tykqbm; |
| | | |
| | | @PropertyDef(label = "单位代码") |
| | | @Column(name = "dwdm", length = 18) |
| | | private String dwdm; |
| | | |
| | | @PropertyDef(label = "统一单位代码") |
| | | @Column(name = "tydwbm", length = 20) |
| | | private String tydwbm; |
| | | |
| | | @PropertyDef(label = "库区名称") |
| | | @Column(name = "kqmc", length = 256) |
| | |
| | | @Column(name = "czclfs", length = 1000) |
| | | private String czclfs; |
| | | |
| | | @PropertyDef(label = "保质期") |
| | | @Column(name = "bzq") |
| | | @JSONField(format = "yyyy-MM-dd") |
| | | private Date bzq; |
| | | @PropertyDef(label = "保质期", description = "几年、几个月等") |
| | | @Column(name = "bzq", length = 50) |
| | | private String bzq; |
| | | |
| | | @PropertyDef(label = "采购日期") |
| | | @JSONField(format = "yyyy-MM-dd") |