| | |
| | | import com.alibaba.fastjson.annotation.JSONField; |
| | | import com.bstek.dorado.annotation.PropertyDef; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import javax.persistence.Column; |
| | | import javax.persistence.Entity; |
| | | import javax.persistence.Id; |
| | | import javax.persistence.Table; |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | |
| | | * 接口表-仓房信息 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class SH2023Api1103 implements Serializable { |
| | | |
| | | /** |
| | |
| | | */ |
| | | private static final long serialVersionUID = 8095346227076335949L; |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "业务id") |
| | | private String bizId; |
| | | |
| | | |
| | | @JSONField(serialize = false) |
| | | @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间") |
| | | private Date syncTime; |
| | | |
| | | @PropertyDef(label = "仓房代码") |
| | | private String cfdm; |
| | | |
| | | @PropertyDef(label = "仓房名称") |
| | | private String cfmc; |
| | | |
| | | @PropertyDef(label = "统一仓房编码") |
| | | private String tycfbm; |
| | | |
| | | @PropertyDef(label = "库区代码") |
| | | private String kqdm; |
| | |
| | | private String dmjg; |
| | | |
| | | @PropertyDef(label = "设计仓容") |
| | | private double sjcr; |
| | | private Double sjcr; |
| | | |
| | | @PropertyDef(label = "仓外长") |
| | | private double cwc; |
| | | private Double cwc; |
| | | |
| | | @PropertyDef(label = "仓外宽") |
| | | private double cwk; |
| | | private Double cwk; |
| | | |
| | | @PropertyDef(label = "仓外檐高") |
| | | private double cwyg; |
| | | private Double cwyg; |
| | | |
| | | @PropertyDef(label = "仓外顶高") |
| | | private double cwdg; |
| | | private Double cwdg; |
| | | |
| | | @PropertyDef(label = "筒仓外径") |
| | | private double tcwj; |
| | | private Double tcwj; |
| | | |
| | | @PropertyDef(label = "仓内长") |
| | | private double cnc; |
| | | private Double cnc; |
| | | |
| | | @PropertyDef(label = "仓内宽") |
| | | private double cnk; |
| | | private Double cnk; |
| | | |
| | | @PropertyDef(label = "仓内檐高") |
| | | private double cnyg; |
| | | private Double cnyg; |
| | | |
| | | @PropertyDef(label = "仓内装粮线高") |
| | | private double cnzlxg; |
| | | private Double cnzlxg; |
| | | |
| | | @PropertyDef(label = "筒仓内径") |
| | | private double tcnj; |
| | | private Double tcnj; |
| | | |
| | | @PropertyDef(label = "仓内体积") |
| | | private double cntj; |
| | | private Double cntj; |
| | | |
| | | @PropertyDef(label = "仓门数量") |
| | | private Integer cmsl; |
| | |
| | | private String cmwz; |
| | | |
| | | @PropertyDef(label = "仓门高度") |
| | | private double cmgd; |
| | | private Double cmgd; |
| | | |
| | | @PropertyDef(label = "仓门宽度") |
| | | private double cmkd; |
| | | private Double cmkd; |
| | | |
| | | @PropertyDef(label = "挡粮门型式") |
| | | private String dlmxs; |
| | |
| | | private String bgr; |
| | | |
| | | @PropertyDef(label = "仓房经度") |
| | | private double jd; |
| | | private Double jd; |
| | | |
| | | @PropertyDef(label = "仓房纬度") |
| | | private double wd; |
| | | private Double wd; |
| | | |
| | | @PropertyDef(label = "操作标志") |
| | | private String czbz; |
| | |
| | | @PropertyDef(label = "标记位") |
| | | private String bjw; |
| | | |
| | | |
| | | } |
| | | } |