From db3192e9a1607d8412c49dbc964d02ce3c9acf5d Mon Sep 17 00:00:00 2001 From: zhaoxiaolin Date: Fri, 20 Oct 2023 16:28:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=8E=92=E5=BA=8F=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../op/quality/domain/QcCheckTypeProject.java | 22 +++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) 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; }