package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
/**
|
* SOP适用的产品
|
*/
|
@TableName("tb_sop_product")
|
public class SOPProduct {
|
private Integer id;
|
/**编码*/
|
private String code;
|
/**型号*/
|
private String model;
|
/**sop id*/
|
private Integer sopId;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String getModel() {
|
return model;
|
}
|
|
public void setModel(String model) {
|
this.model = model;
|
}
|
|
public Integer getSopId() {
|
return sopId;
|
}
|
|
public void setSopId(Integer sopId) {
|
this.sopId = sopId;
|
}
|
}
|