diff --git a/op-modules/op-quality/src/main/java/com/op/quality/domain/QcCheckTypeProject.java b/op-modules/op-quality/src/main/java/com/op/quality/domain/QcCheckTypeProject.java index 4920c001..0634545a 100644 --- a/op-modules/op-quality/src/main/java/com/op/quality/domain/QcCheckTypeProject.java +++ b/op-modules/op-quality/src/main/java/com/op/quality/domain/QcCheckTypeProject.java @@ -8,7 +8,7 @@ import com.op.common.core.web.domain.BaseEntity; /** * 物料检验项目维护对象 qc_check_type_project - * + * * @author Open Platform * @date 2023-10-18 */ @@ -41,7 +41,7 @@ public class QcCheckTypeProject extends BaseEntity { /** 抽样比例 */ @Excel(name = "抽样比例") private BigDecimal sample; - + private Integer sampleNum; /** 是否启用,0是1否 */ @Excel(name = "是否启用,0是1否") private String status; @@ -65,6 +65,24 @@ public class QcCheckTypeProject extends BaseEntity { @Excel(name = "物料编码") private String materialCode; + private Integer sort; + + public Integer getSort() { + return sort; + } + + public void setSort(Integer sort) { + this.sort = sort; + } + + public Integer getSampleNum() { + return sampleNum; + } + + public void setSampleNum(Integer sampleNum) { + this.sampleNum = sampleNum; + } + public void setId(String id) { this.id = id; }