重构
This commit is contained in:
28
src/main/java/com/xkrs/model/qo/QcSpecQoDelete.java
Normal file
28
src/main/java/com/xkrs/model/qo/QcSpecQoDelete.java
Normal 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 + '}';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user