czt
2024-06-28 54b61daf58037385cb8d46404b12a95786c7c8f3
src/main/java/com/fzzy/api/entity/Api1206.java
@@ -2,15 +2,12 @@
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;
@@ -21,7 +18,7 @@
@Entity
@Table(name = "API_1206")
@EqualsAndHashCode(callSuper = false)
public class Api1206 extends ApiParent implements Serializable {
public class Api1206 implements Serializable {
   
   public static String SORT_PROP = "ckjsdh";
@@ -34,6 +31,10 @@
    @PropertyDef(label = "出库结算单号" )
    @Column(name = "ckjsdh", length = 33)
    private String ckjsdh;
    @PropertyDef(label = "统一单位编码")
    @Column(name = "tydwbm", length = 20)
    private String tydwbm;
    @PropertyDef(label = "合同号" )
    @Column(name = "hth", length = 64)
@@ -101,4 +102,19 @@
    @PropertyDef(label = "货位代码")
    @Column(name = "hwdm", length = 30)
    private String hwdm;
    @JSONField(serialize = false)
    @PropertyDef(label = "业务id")
    @Column(name = "bizId", length = 40)
    private String bizId;
    @JSONField(serialize = false)
    @PropertyDef(label = "库区代码")
    @Column(name = "kqdm", length = 21)
    private String kqdm;
    @JSONField(serialize = false)
    @PropertyDef(label = "同步时间", description = "从粮库系统同步到接口管理中心的时间")
    @Column(name = "syncTime")
    private Date syncTime;
}