| | |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.fasterxml.jackson.annotation.JsonIgnore; |
| | | import lombok.Data; |
| | | |
| | | import javax.persistence.*; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | |
| | | @Column(name = "hwdm", length = 30) |
| | | private String hwdm; |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "业务id") |
| | | @Column(name = "bizId", length = 40) |
| | | private String bizId; |
| | | @PropertyDef(label = "统一货位编码" ) |
| | | @Column(name = "tyhwbm", length = 28) |
| | | private String tyhwbm; |
| | | |
| | | @PropertyDef(label = "单位代码" ) |
| | | @Column(name = "dwdm", length = 18) |
| | |
| | | @Column(name = "zhgxsj", nullable = false) |
| | | private Date zhgxsj; |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "业务id") |
| | | @Column(name = "bizId", length = 40) |
| | | private String bizId; |
| | | |
| | | |
| | | } |