2024-05-12 11:24:28 +08:00
|
|
|
package com.ruoyi.redBook.domain;
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
public class OAQuot extends BaseEntity {
|
|
|
|
private String quot_id;
|
|
|
|
private String quotCode;//报价单号
|
|
|
|
private String quotCustomer;//报价客户
|
|
|
|
private String quotProject;//报价项目
|
|
|
|
private String quotLxr;//联系人
|
|
|
|
private String quotLxrdh;//联系人电话
|
2024-05-13 16:03:01 +08:00
|
|
|
private String totalPrice;//总金额
|
2024-05-12 11:24:28 +08:00
|
|
|
|
2024-05-14 10:31:00 +08:00
|
|
|
private String rbDateUid;//调价版本
|
2024-05-16 13:04:21 +08:00
|
|
|
private String quotApprovalStatus;//提交状态
|
2024-05-14 10:31:00 +08:00
|
|
|
|
2024-05-21 17:01:09 +08:00
|
|
|
private String createName;//创建人
|
|
|
|
|
2024-05-12 11:24:28 +08:00
|
|
|
private List<OAQuotProduct> selectedResultData;
|
|
|
|
|
|
|
|
public String getQuot_id() { return quot_id; }
|
|
|
|
|
|
|
|
public void setQuot_id(String quot_id) { this.quot_id = quot_id; }
|
|
|
|
|
|
|
|
public String getQuotCode() { return quotCode; }
|
|
|
|
|
|
|
|
public void setQuotCode(String quotCode) { this.quotCode = quotCode; }
|
|
|
|
|
|
|
|
public String getQuotCustomer() {
|
|
|
|
return quotCustomer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setQuotCustomer(String quotCustomer) {
|
|
|
|
this.quotCustomer = quotCustomer;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotProject() {
|
|
|
|
return quotProject;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setQuotProject(String quotProject) {
|
|
|
|
this.quotProject = quotProject;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotLxr() {
|
|
|
|
return quotLxr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setQuotLxr(String quotLxr) {
|
|
|
|
this.quotLxr = quotLxr;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotLxrdh() {
|
|
|
|
return quotLxrdh;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setQuotLxrdh(String quotLxrdh) {
|
|
|
|
this.quotLxrdh = quotLxrdh;
|
|
|
|
}
|
|
|
|
|
2024-05-13 16:03:01 +08:00
|
|
|
public String getTotalPrice() { return totalPrice; }
|
|
|
|
|
|
|
|
public void setTotalPrice(String totalPrice) { this.totalPrice = totalPrice; }
|
|
|
|
|
2024-05-14 10:31:00 +08:00
|
|
|
public String getRbDateUid() { return rbDateUid; }
|
|
|
|
|
|
|
|
public void setRbDateUid(String rbDateUid) { this.rbDateUid = rbDateUid; }
|
|
|
|
|
2024-05-16 13:04:21 +08:00
|
|
|
public String getQuotApprovalStatus() { return quotApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotApprovalStatus(String quotApprovalStatus) { this.quotApprovalStatus = quotApprovalStatus; }
|
|
|
|
|
2024-05-12 11:24:28 +08:00
|
|
|
public List<OAQuotProduct> getSelectedResultData() {
|
|
|
|
return selectedResultData;
|
|
|
|
}
|
|
|
|
|
2024-05-21 17:01:09 +08:00
|
|
|
public String getCreateName() { return createName; }
|
|
|
|
|
|
|
|
public void setCreateName(String createName) { this.createName = createName; }
|
|
|
|
|
2024-05-12 11:24:28 +08:00
|
|
|
public void setSelectedResultData(List<OAQuotProduct> selectedResultData) {
|
|
|
|
this.selectedResultData = selectedResultData;
|
|
|
|
}
|
|
|
|
}
|