package com.ld.igds.models;
|
|
import com.bstek.dorado.annotation.PropertyDef;
|
import lombok.Data;
|
|
import javax.persistence.*;
|
import java.io.Serializable;
|
import java.util.Date;
|
import java.util.List;
|
|
|
/**
|
* @Desc: 空仓验收单
|
* @author: Andy
|
* @update-time: 2023/5/26
|
*/
|
@Data
|
@Entity
|
@Table(name = "D_INOUT_EMPTY_CHECK")
|
public class InoutEmptyCheck implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
@Id
|
@Column(name = "ID_", length = 40)
|
@PropertyDef(label = "单据号")
|
private String id;
|
|
@Column(name = "COMPANY_ID_", length = 10)
|
@PropertyDef(label = "组织编码")
|
private String companyId;
|
|
@Column(name = "DEPT_ID_", length = 50)
|
@PropertyDef(label = "库区编码")
|
private String deptId;
|
|
@Column(name = "DEPOT_ID_", length = 50)
|
@PropertyDef(label = "仓库编码")
|
private String depotId;
|
|
@Column(name = "NAME_", length = 50)
|
@PropertyDef(label = "单据名称")
|
private String name;
|
|
@Column(name = "FOOD_VARIETY_", length = 20)
|
@PropertyDef(label = "拟存品种")
|
private String foodVariety;
|
|
@Column(name = "dpqk", length = 10)
|
@PropertyDef(label = "地坪", description = "仓房完好情况")
|
private String dpqk;
|
|
@Column(name = "qtqk", length = 10)
|
@PropertyDef(label = "墙体", description = "仓房完好情况")
|
private String qtqk;
|
|
@Column(name = "wmqk", length = 10)
|
@PropertyDef(label = "屋面", description = "仓房完好情况")
|
private String wmqk;
|
|
@Column(name = "mcqk", length = 10)
|
@PropertyDef(label = "门窗", description = "仓房完好情况")
|
private String mcqk;
|
|
@Column(name = "pdqk", length = 10)
|
@PropertyDef(label = "铺垫", description = "仓房完好情况")
|
private String pdqk;
|
|
@Column(name = "fqw", length = 10)
|
@PropertyDef(label = "防雀网", description = "三防设施是否完好")
|
private String fqw;
|
|
@Column(name = "fcx", length = 10)
|
@PropertyDef(label = "防虫线", description = "三防设施是否完好")
|
private String fcx;
|
|
@Column(name = "fsb", length = 10)
|
@PropertyDef(label = "防鼠板", description = "三防设施是否完好")
|
private String fsb;
|
|
@Column(name = "tfxt", length = 10)
|
@PropertyDef(label = "通风系统是否完好")
|
private String tfxt;
|
|
@Column(name = "xzxt", length = 10)
|
@PropertyDef(label = "熏蒸系统是否完好")
|
private String xzxt;
|
|
@Column(name = "lqxt", length = 10)
|
@PropertyDef(label = "粮情系统是否完好")
|
private String lqxt;
|
|
@Column(name = "wkxt", length = 10)
|
@PropertyDef(label = "温控系统是否完好")
|
private String wkxt;
|
|
@Column(name = "qtxt", length = 10)
|
@PropertyDef(label = "气调系统是否完好")
|
private String qtxt;
|
|
@Column(name = "sfqx", length = 10)
|
@PropertyDef(label = "是否清消")
|
private String sfqx;
|
|
@Column(name = "zlfa", length = 10)
|
@PropertyDef(label = "是否制定装粮方案")
|
private String zlfa;
|
|
@Column(name = "CREATE_TIME_")
|
@PropertyDef(label = "报检时间")
|
private Date createTime;
|
|
@Column(name = "AUTID_TIME_")
|
@PropertyDef(label = "验收时间")
|
private Date auditTime;
|
|
@Column(name = "AUTID_RESULT_", length = 200)
|
@PropertyDef(label = "验收结论")
|
private String auditResult;
|
|
@Column(name = "AUTID_INFO_", length = 200)
|
@PropertyDef(label = "验收建议")
|
private String auditInfo;
|
|
@Column(name = "AUTID_UNIT_", length = 50)
|
@PropertyDef(label = "验收单位")
|
private String auditUnit;
|
|
@Column(name = "AUTID_USER_", length = 50)
|
@PropertyDef(label = "验收人")
|
private String auditUser;
|
|
@Column(name = "UPDATE_TIME_")
|
@PropertyDef(label = "数据更新时间")
|
private Date updateTime;
|
|
@Transient
|
@PropertyDef(label = "相关附件")
|
private List<FileInfo> files;
|
}
|