jiazx0107@163.com
2023-12-14 8435cf1d25d07b09e2a9937d39bed1c1a422e4f0
src/main/java/com/fzzy/api/entity/Api1103.java
@@ -4,7 +4,6 @@
import com.bstek.dorado.annotation.PropertyDef;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
@@ -21,22 +20,9 @@
@EqualsAndHashCode(callSuper=false)
public class Api1103  implements Serializable {
    /**
    *
    */
   private static final long serialVersionUID = 8095346227076335949L;
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
    @JSONField(serialize = false)
    @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间")
    @Column(name = "syncTime")
    private Date syncTime;
    /*----------国标字段----------*/
   @Id
    @PropertyDef(label = "仓房代码" )
    @Column(name = "cfdm", length = 25)
@@ -56,7 +42,7 @@
    @PropertyDef(label = "交付使用日期" )
    @JSONField(format = "yyyy-MM-dd")
    @Column(name = "jfsyrq", nullable = false)
    @Column(name = "jfsyrq")
    private Date jfsyrq;
    @PropertyDef(label = "建设单位" )
@@ -249,11 +235,11 @@
    @PropertyDef(label = "仓房经度" )
    @Column(name = "jd", precision = 20, scale = 6)
    private double jd;
    private Double jd;
    @PropertyDef(label = "仓房纬度" )
    @Column(name = "wd", precision = 20, scale = 6)
    private double wd;
    private Double wd;
    @PropertyDef(label = "操作标志" )
    @Column(name = "czbz", length = 1)
@@ -261,10 +247,29 @@
    @PropertyDef(label = "最后更新时间" )
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @Column(name = "zhgxsj", nullable = false)
    @Column(name = "zhgxsj")
    private Date zhgxsj;
    /*----------上海市平台规范字段----------*/
    @PropertyDef(label = "廒间数")
    @Column(name = "ajs")
    private Integer ajs;
    @PropertyDef(label = "标记位")
    @Column(name = "bjw", length = 40)
    private String bjw;
    /*----------接口系统自定义字段----------*/
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
    @JSONField(serialize = false)
    @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间")
    @Column(name = "syncTime")
    private Date syncTime;
}