YYC
2023-12-12 16522bfb6150c327ac1195b5b8d50a0cbdac8a9a
src/main/java/com/fzzy/api/entity/Api1108.java
@@ -2,6 +2,7 @@
import com.alibaba.fastjson.annotation.JSONField;
import com.bstek.dorado.annotation.PropertyDef;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
@@ -17,14 +18,14 @@
@Data
@Entity
@Table(name = "API_1108")
public class Api1108  implements Serializable {
public class Api1108 implements Serializable {
    /**
    *
    */
   private static final long serialVersionUID = -7131774374918644731L;
     *
     */
    private static final long serialVersionUID = -7131774374918644731L;
   @Id
    @Id
    @Column(name = "ID_", length = 40)
    @JsonIgnore
    private String id;
@@ -91,25 +92,30 @@
    private String czclfs;
    @PropertyDef(label = "保质期")
    @Column(name = "bzq", length = 20)
    private String bzq;
    @Column(name = "bzq")
    @JSONField(format = "yyyy-MM-dd")
    private Date bzq;
    @PropertyDef(label = "采购日期")
    @JSONField(format = "yyyy-MM-dd")
    @Column(name = "cgrq", nullable = false)
    @Column(name = "cgrq")
    private Date cgrq;
    @PropertyDef(label = "库存数量")
    @Column(name = "kcsl", precision = 20, scale = 6)
    private Double kcsl;
    @Column(name = "kcsldw", length = 1)
    @PropertyDef(label = "库存量单位", description = "1(默认):公斤;2:克;3:毫升;")
    private String kcsldw;
    @PropertyDef(label = "操作标志")
    @Column(name = "czbz", length = 1)
    private String czbz;
    @PropertyDef(label = "最后更新时间")
    @JSONField(format = "yyyy-MM-dd HH:mm:ss")
    @Column(name = "zhgxsj", nullable = false)
    @Column(name = "zhgxsj")
    private Date zhgxsj;
}