增加排序字段

highway
zhaoxiaolin 11 months ago
parent 9c65126191
commit db3192e9a1

@ -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;
}

Loading…
Cancel
Save