This commit is contained in:
2022-03-11 17:33:03 +08:00
parent 1ddf362e05
commit b757013382
39 changed files with 78 additions and 78 deletions

View File

@ -0,0 +1,28 @@
package com.xkrs.model.qo;
/**
* 删除检验规格接收类
*/
public class QcSpecQoDelete {
/**
* 主键id
*/
private Integer id;
public QcSpecQoDelete() {
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
@Override
public String toString() {
return "QcSpecQoDelete{" + "id=" + id + '}';
}
}