37 lines
786 B
Java
37 lines
786 B
Java
package com.ruoyi.technicalConfirm.domain;
|
|
|
|
public class QuotJsqrXzRemark {
|
|
private String type;
|
|
private String quotJsqrId;
|
|
private String quotJsqrCode;
|
|
private String remark;
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getQuotJsqrId() { return quotJsqrId; }
|
|
|
|
public void setQuotJsqrId(String quotJsqrId) { this.quotJsqrId = quotJsqrId; }
|
|
|
|
public String getQuotJsqrCode() {
|
|
return quotJsqrCode;
|
|
}
|
|
|
|
public void setQuotJsqrCode(String quotJsqrCode) {
|
|
this.quotJsqrCode = quotJsqrCode;
|
|
}
|
|
|
|
public String getRemark() {
|
|
return remark;
|
|
}
|
|
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
}
|
|
}
|