package com.yuanchu.mom.dto; import com.yuanchu.mom.annotation.ValueTableShow; import com.yuanchu.mom.common.OrderBy; import lombok.Data; import java.io.Serializable; @Data public class SampleProductDto2 extends OrderBy implements Serializable { private Integer id; @ValueTableShow(name = "样品编号") private String sampleCode; @ValueTableShow(value = 2, name = "样品名称") private String sample; @ValueTableShow(value = 4, name = "样品型号") private String model; // @ValueTableShow(value = 5, name = "样品状态") private Integer insState; @ValueTableShow(value = 15, name = "单位") private String unit; @ValueTableShow(value = 7, name = "检验项") private String inspectionItem; @ValueTableShow(value = 8, name = "检验子项") private String inspectionItemSubclass; @ValueTableShow(value = 17, name = "实验室") private String sonLaboratory; private String inspectionItemType; // @ValueTableShow(value = 11, name = "检验值类型") private String inspectionValueType; @ValueTableShow(value = 12, name = "要求值") private String ask; @ValueTableShow(value = 13, name = "最终值") private String lastValue; @ValueTableShow(value = 14, name = "是否合格") private Integer insResult; @ValueTableShow(value = 16, name = "设备") private String equipValue; }