| | |
| | | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import javax.persistence.Column; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | @PropertyDef(label = "补药前仓内磷化氢浓度" ) |
| | | private Double byqcnlhqnd; |
| | | |
| | | @JsonProperty("lhqnddw") |
| | | @PropertyDef(label = "磷化氢浓度单位",description = "1:g/m³ (默认) 2:ppm 3:ml/m³ 4:%VOL。") |
| | | private String nlhqnddw; |
| | | |
| | |
| | | @PropertyDef(label = "最后更新时间" ) |
| | | private Date zhgxsj; |
| | | |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "货位代码" ) |
| | | @Column(name = "hwdm", length = 30) |
| | | private String hwdm; |
| | | |
| | | } |