package com.fzzy.push.sh2023.dto; import com.alibaba.fastjson.annotation.JSONField; import com.bstek.dorado.annotation.PropertyDef; import com.fasterxml.jackson.annotation.JsonIgnore; import com.fzzy.api.entity.ApiParent; import lombok.Data; import javax.persistence.Transient; import java.io.Serializable; import java.util.Date; import java.util.List; /** * 粮情设备配置 * * @author czt * @date 2023-08-21 */ @Data public class SH2023Api2103 implements Serializable { private static final long serialVersionUID = 9157617424050247565L; @PropertyDef(label = "货位代码") private String hwdm; @PropertyDef(label = "电缆行数") private String dlhs; @PropertyDef(label = "电缆列数") private String dlls; @PropertyDef(label = "电缆层数") private String dlcs; @PropertyDef(label = "电缆圈数") private String dlqs; @PropertyDef(label = "电缆圈排列详情") private String dlqplxq; @PropertyDef(label = "上层起点") private String scqd; @PropertyDef(label = "上层终点") private String sczd; @PropertyDef(label = "中层起点") private String zcqd; @PropertyDef(label = "中层终点") private String zczd; @PropertyDef(label = "下层起点") private String xcqd; @PropertyDef(label = "下层终点") private String xczd; @PropertyDef(label = "有效范围起始层") private String yxfwqsc; @PropertyDef(label = "有效范围结束层") private String yxfwjsc; @PropertyDef(label = "标记位") private String bjw; @PropertyDef(label = "操作标志") private String czbz; @PropertyDef(label = "最后更新时间") @JSONField(format = "yyyy-MM-dd HH:mm:ss") private Date zhgxsj; @Transient @JSONField(serialize = false) private List sh2023Api2103Items; }