package com.fzzy.api.entity; import com.alibaba.fastjson.annotation.JSONField; import com.bstek.dorado.annotation.PropertyDef; import lombok.Data; import lombok.EqualsAndHashCode; import javax.persistence.*; import java.io.Serializable; import java.util.Date; /** * 接口表-气体检测数据表 * * @author chen * @date 2022-09-02 16:12 */ @Data @Entity @Table(name = "API_1304") @EqualsAndHashCode(callSuper=false) public class Api1304 extends ApiParent implements Serializable { /** * */ private static final long serialVersionUID = 5367656121593571013L; @Id @PropertyDef(label = "气体浓度检测单号" ) @Column(name = "qtndjcdh", length = 42) private String qtndjcdh; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "检测时间" ) @Column(name = "jcsj") private Date jcsj; @PropertyDef(label = "货位代码" ) @Column(name = "hwdm", length = 30) private String hwdm; @PropertyDef(label = "统一货位编码" ) @Column(name = "tyhwbm", length = 28) private String tyhwbm; @PropertyDef(label = "氧气含量值集合" ) @Column(name = "yqhlzjh", length = 8000, columnDefinition = "text") private String yqhlzjh; @PropertyDef(label = "二氧化碳含量值集合" ) @Column(name = "eyhthlzjh", length = 8000, columnDefinition = "text") private String eyhthlzjh; @PropertyDef(label = "硫酰氟浓度值集合" ) @Column(name = "lxfndzjh", length = 8000, columnDefinition = "text") private String lxfndzjh; @PropertyDef(label = "磷化氢浓度值集合" ) @Column(name = "lhqndzjh", length = 8000, columnDefinition = "text") private String lhqndzjh; @PropertyDef(label = "一氧化氮含量值集合" ) @Column(name = "yyhdhlzjh", length = 8000, columnDefinition = "text") private String yyhdhlzjh; @PropertyDef(label = "一氧化碳含量值集合" ) @Column(name = "yyhthlzjh", length = 8000, columnDefinition = "text") private String yyhthlzjh; @PropertyDef(label = "操作标志" ) @Column(name = "czbz", length = 1) private String czbz; @PropertyDef(label = "作业类型" ) @Column(name = "zylx", length = 1) private String zylx; @JSONField(format = "yyyy-MM-dd HH:mm:ss") @PropertyDef(label = "最后更新时间" ) @Column(name = "zhgxsj") private Date zhgxsj; }