2024-04-02 11:24:37 +08:00
|
|
|
package com.ruoyi.quot.domain;
|
|
|
|
|
2024-04-07 16:54:05 +08:00
|
|
|
import java.util.Date;
|
2024-04-02 11:24:37 +08:00
|
|
|
import java.util.List;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 报价对象 quot
|
|
|
|
*
|
|
|
|
* @author ruoyi
|
|
|
|
* @date 2024-04-01
|
|
|
|
*/
|
|
|
|
public class Quot extends BaseEntity
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
/** */
|
|
|
|
private String quotId;
|
|
|
|
|
|
|
|
/** 报价单号 */
|
|
|
|
@Excel(name = "报价单号")
|
|
|
|
private String quotCode;
|
|
|
|
|
2024-06-03 17:14:47 +08:00
|
|
|
/** 金思维报价单号 */
|
|
|
|
private String quotJswCode;
|
|
|
|
|
2024-05-24 11:04:09 +08:00
|
|
|
/** 业务员账号 */
|
|
|
|
private String quotSalesmanCode;
|
|
|
|
|
2024-04-02 11:24:37 +08:00
|
|
|
/** 业务员编码 */
|
|
|
|
private String quotSalesmanBm;
|
|
|
|
|
|
|
|
/** 业务员 */
|
|
|
|
@Excel(name = "业务员")
|
|
|
|
private String quotSalesmanName;
|
|
|
|
|
|
|
|
/** 客户编码 */
|
|
|
|
private String quotCustomerBm;
|
|
|
|
/** 客户名称 */
|
|
|
|
@Excel(name = "客户名称")
|
|
|
|
private String quotCustomerName;
|
|
|
|
|
|
|
|
/** 业务员所属部门id */
|
|
|
|
private String quotSalesmanDeptId;
|
|
|
|
|
|
|
|
/** 业务员所属部门 */
|
|
|
|
private String quotSalesmanDeptName;
|
|
|
|
|
|
|
|
/** 地址 */
|
|
|
|
private String quotAddress;
|
|
|
|
|
2024-05-24 15:46:00 +08:00
|
|
|
/** 联系人 */
|
|
|
|
private String quotContacts;
|
2024-04-02 11:24:37 +08:00
|
|
|
/** 联系电话 */
|
|
|
|
private String quotPhone;
|
|
|
|
|
|
|
|
/** 询价日期 */
|
2024-04-16 08:54:17 +08:00
|
|
|
@Excel(name = "询价日期",dateFormat = "yyyy-MM-dd hh:MM:ss")
|
2024-04-07 16:54:05 +08:00
|
|
|
private Date quotInquiryDate;
|
2024-04-02 11:24:37 +08:00
|
|
|
|
|
|
|
/** 项目名称 */
|
|
|
|
@Excel(name = "项目名称")
|
|
|
|
private String quotProject;
|
|
|
|
|
|
|
|
/** 报价日期 */
|
2024-04-16 08:54:17 +08:00
|
|
|
@Excel(name = "报价日期",dateFormat = "yyyy-MM-dd hh:MM:ss")
|
2024-04-07 16:54:05 +08:00
|
|
|
private Date quotQuotationDate;
|
2024-04-02 11:24:37 +08:00
|
|
|
|
2024-05-20 14:31:20 +08:00
|
|
|
/** 数量 */
|
|
|
|
private String quotQuantity;
|
|
|
|
|
2024-04-02 11:24:37 +08:00
|
|
|
/** 报价来源 */
|
|
|
|
private String quotQuotationFrom;
|
|
|
|
|
|
|
|
/** 报价要求 */
|
|
|
|
@Excel(name = "报价要求")
|
|
|
|
private String quotQuotationRequire;
|
|
|
|
|
|
|
|
/** 反馈说明 */
|
|
|
|
private String quotFeedbackExplanation;
|
|
|
|
|
2024-06-13 10:41:12 +08:00
|
|
|
/** 明细条数 */
|
|
|
|
private Integer quotMaterialsCount;
|
|
|
|
|
2024-05-24 11:04:09 +08:00
|
|
|
/** 铝价 */
|
|
|
|
private String quotLvPrice;
|
|
|
|
|
|
|
|
/** 铜价 */
|
|
|
|
private String quotTongPrice;
|
|
|
|
|
2024-05-28 17:27:29 +08:00
|
|
|
/** 整单料价价差率 */
|
|
|
|
private String quotMatpriceDiff;
|
2024-06-20 11:10:06 +08:00
|
|
|
/** 整单料价价差率2 */
|
|
|
|
private String quotMatpriceDiff2;
|
2024-05-28 17:27:29 +08:00
|
|
|
|
2024-05-24 11:04:09 +08:00
|
|
|
/** 是否打印 */
|
|
|
|
private String quotPrint;
|
2024-06-18 11:58:52 +08:00
|
|
|
/** 打印人账号 */
|
2024-05-24 11:04:09 +08:00
|
|
|
private String quotPrintUserName;
|
2024-06-18 11:58:52 +08:00
|
|
|
/** 打印人 */
|
|
|
|
private String quotPrintUserNickName;
|
2024-05-24 11:04:09 +08:00
|
|
|
|
2024-04-02 11:24:37 +08:00
|
|
|
/** 总价 */
|
|
|
|
private String quotTotalPrice;
|
|
|
|
|
|
|
|
/** 审核人账号 */
|
|
|
|
private String quotCheckUserName;
|
|
|
|
|
|
|
|
/** 审核人 */
|
|
|
|
private String quotCheckUserNickname;
|
|
|
|
|
|
|
|
/** 提交状态 */
|
2024-04-16 08:54:17 +08:00
|
|
|
@Excel(name = "提交状态",dictType = "quot_approval_status")
|
2024-04-02 11:24:37 +08:00
|
|
|
private String quotApprovalStatus;
|
|
|
|
|
2024-04-03 08:33:34 +08:00
|
|
|
/** 创建人 */
|
|
|
|
private String createName;
|
|
|
|
|
2024-04-07 11:16:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
/** 技术协助 */
|
|
|
|
private String quotJsxzStandard;//技术协助-标准
|
|
|
|
private String quotJsxzApprovalStatus;//技术协助-协助状态
|
|
|
|
private String quotJsxzChapter;//技术协助-是否需要技术章
|
|
|
|
private String quotJsxzTechnicalRequirement;//技术协助-技术要求
|
2024-04-11 12:39:55 +08:00
|
|
|
private String[] quotJsxzGroup;//技术协助-分组
|
|
|
|
private String quotJsxzGroupValues;//技术协助-分组
|
2024-04-07 11:16:40 +08:00
|
|
|
private String quotJsxzConfirmId;//技术协助-技术确认单id
|
2024-04-08 14:02:04 +08:00
|
|
|
private String quotJsxzConfirmCode;//技术协助-技术确认单号
|
2024-04-07 11:16:40 +08:00
|
|
|
|
2024-04-08 09:57:49 +08:00
|
|
|
private String quotJsqrTlApprovalStatus;//技术协助-特缆协助状态
|
|
|
|
private String quotJsqrTlRemark;//技术协助-特缆协助说明
|
2024-04-07 11:16:40 +08:00
|
|
|
|
2024-04-08 09:57:49 +08:00
|
|
|
private String quotJsqrDyApprovalStatus;//技术协助-低压协助状态
|
|
|
|
private String quotJsqrDyRemark;//技术协助-低压协助说明
|
2024-04-07 11:16:40 +08:00
|
|
|
|
2024-04-08 09:57:49 +08:00
|
|
|
private String quotJsqrZyApprovalStatus;//技术协助-中压协助状态
|
|
|
|
private String quotJsqrZyRemark;//技术协助-中压协助说明
|
|
|
|
|
|
|
|
private String quotJsqrQtApprovalStatus;//技术协助-其他协助状态
|
|
|
|
private String quotJsqrQtRemark;//技术协助-其他协助说明
|
2024-04-07 11:16:40 +08:00
|
|
|
|
2024-04-16 15:55:02 +08:00
|
|
|
/** 核价 */
|
|
|
|
private String quotHjId;//核价单id
|
|
|
|
private String quotHjCode;//核价单号
|
|
|
|
private String quotHjApprovalStatus;//核价协助状态
|
|
|
|
private String quotHjPricingDate;//核价日期
|
|
|
|
private String quotHjRemark;//核价备注
|
|
|
|
|
2024-06-03 17:14:47 +08:00
|
|
|
|
|
|
|
/** 金思维 **/
|
|
|
|
private String quotJswApprovalStatus;
|
2024-06-04 08:52:22 +08:00
|
|
|
/** OA **/
|
|
|
|
private String quotOAApprovalStatus;
|
2024-06-05 17:26:59 +08:00
|
|
|
private String quotOAApprovalStatusRemark;
|
2024-06-03 17:14:47 +08:00
|
|
|
|
2024-04-02 11:24:37 +08:00
|
|
|
/** 报价单-产品信息 */
|
|
|
|
private List<QuotMaterial> quotMaterialList;
|
|
|
|
|
|
|
|
public void setQuotId(String quotId)
|
|
|
|
{
|
|
|
|
this.quotId = quotId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotId()
|
|
|
|
{
|
|
|
|
return quotId;
|
|
|
|
}
|
|
|
|
public void setQuotCode(String quotCode)
|
|
|
|
{
|
|
|
|
this.quotCode = quotCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotCode()
|
|
|
|
{
|
|
|
|
return quotCode;
|
|
|
|
}
|
2024-06-03 17:14:47 +08:00
|
|
|
public String getQuotJswCode() { return quotJswCode; }
|
|
|
|
|
|
|
|
public void setQuotJswCode(String quotJswCode) { this.quotJswCode = quotJswCode; }
|
2024-05-24 11:04:09 +08:00
|
|
|
public String getQuotSalesmanCode() { return quotSalesmanCode; }
|
|
|
|
|
|
|
|
public void setQuotSalesmanCode(String quotSalesmanCode) { this.quotSalesmanCode = quotSalesmanCode; }
|
2024-04-02 11:24:37 +08:00
|
|
|
public void setQuotSalesmanBm(String quotSalesmanBm)
|
|
|
|
{
|
|
|
|
this.quotSalesmanBm = quotSalesmanBm;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotSalesmanBm()
|
|
|
|
{
|
|
|
|
return quotSalesmanBm;
|
|
|
|
}
|
|
|
|
public void setQuotSalesmanName(String quotSalesmanName)
|
|
|
|
{
|
|
|
|
this.quotSalesmanName = quotSalesmanName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotSalesmanName()
|
|
|
|
{
|
|
|
|
return quotSalesmanName;
|
|
|
|
}
|
|
|
|
public void setQuotCustomerName(String quotCustomerName)
|
|
|
|
{
|
|
|
|
this.quotCustomerName = quotCustomerName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotCustomerBm() {return quotCustomerBm;}
|
|
|
|
public void setQuotCustomerBm(String quotCustomerBm) {this.quotCustomerBm = quotCustomerBm;}
|
|
|
|
|
|
|
|
public String getQuotCustomerName()
|
|
|
|
{
|
|
|
|
return quotCustomerName;
|
|
|
|
}
|
|
|
|
public void setQuotSalesmanDeptId(String quotSalesmanDeptId)
|
|
|
|
{
|
|
|
|
this.quotSalesmanDeptId = quotSalesmanDeptId;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotSalesmanDeptId()
|
|
|
|
{
|
|
|
|
return quotSalesmanDeptId;
|
|
|
|
}
|
2024-04-07 16:54:05 +08:00
|
|
|
public void setQuotSalesmanDeptName(String quotSalesmanDeptName) { this.quotSalesmanDeptName = quotSalesmanDeptName; }
|
2024-04-02 11:24:37 +08:00
|
|
|
|
|
|
|
public String getQuotSalesmanDeptName()
|
|
|
|
{
|
|
|
|
return quotSalesmanDeptName;
|
|
|
|
}
|
|
|
|
public void setQuotAddress(String quotAddress)
|
|
|
|
{
|
|
|
|
this.quotAddress = quotAddress;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotAddress()
|
|
|
|
{
|
|
|
|
return quotAddress;
|
|
|
|
}
|
2024-05-24 15:46:00 +08:00
|
|
|
public String getQuotContacts() { return quotContacts; }
|
|
|
|
|
|
|
|
public void setQuotContacts(String quotContacts) { this.quotContacts = quotContacts; }
|
2024-04-02 11:24:37 +08:00
|
|
|
public void setQuotPhone(String quotPhone)
|
|
|
|
{
|
|
|
|
this.quotPhone = quotPhone;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotPhone()
|
|
|
|
{
|
|
|
|
return quotPhone;
|
|
|
|
}
|
2024-04-07 16:54:05 +08:00
|
|
|
public void setQuotInquiryDate(Date quotInquiryDate) { this.quotInquiryDate = quotInquiryDate;}
|
2024-04-02 11:24:37 +08:00
|
|
|
|
2024-04-07 16:54:05 +08:00
|
|
|
public Date getQuotInquiryDate()
|
2024-04-02 11:24:37 +08:00
|
|
|
{
|
|
|
|
return quotInquiryDate;
|
|
|
|
}
|
|
|
|
public void setQuotProject(String quotProject)
|
|
|
|
{
|
|
|
|
this.quotProject = quotProject;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotProject()
|
|
|
|
{
|
|
|
|
return quotProject;
|
|
|
|
}
|
2024-04-07 16:54:05 +08:00
|
|
|
public void setQuotQuotationDate(Date quotQuotationDate)
|
2024-04-02 11:24:37 +08:00
|
|
|
{
|
|
|
|
this.quotQuotationDate = quotQuotationDate;
|
|
|
|
}
|
|
|
|
|
2024-04-07 16:54:05 +08:00
|
|
|
public Date getQuotQuotationDate()
|
2024-04-02 11:24:37 +08:00
|
|
|
{
|
|
|
|
return quotQuotationDate;
|
|
|
|
}
|
|
|
|
public void setQuotQuotationFrom(String quotQuotationFrom)
|
|
|
|
{
|
|
|
|
this.quotQuotationFrom = quotQuotationFrom;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotQuotationFrom()
|
|
|
|
{
|
|
|
|
return quotQuotationFrom;
|
|
|
|
}
|
2024-04-07 11:16:40 +08:00
|
|
|
public void setQuotQuotationRequire(String quotQuotationRequire) { this.quotQuotationRequire = quotQuotationRequire; }
|
2024-04-02 11:24:37 +08:00
|
|
|
|
|
|
|
public String getQuotQuotationRequire()
|
|
|
|
{
|
|
|
|
return quotQuotationRequire;
|
|
|
|
}
|
2024-04-07 11:16:40 +08:00
|
|
|
public void setQuotFeedbackExplanation(String quotFeedbackExplanation) { this.quotFeedbackExplanation = quotFeedbackExplanation; }
|
2024-04-02 11:24:37 +08:00
|
|
|
|
|
|
|
public String getQuotFeedbackExplanation()
|
|
|
|
{
|
|
|
|
return quotFeedbackExplanation;
|
|
|
|
}
|
2024-06-13 10:41:12 +08:00
|
|
|
public Integer getQuotMaterialsCount() { return quotMaterialsCount; }
|
|
|
|
|
|
|
|
public void setQuotMaterialsCount(Integer quotMaterialsCount) { this.quotMaterialsCount = quotMaterialsCount; }
|
2024-05-24 11:04:09 +08:00
|
|
|
public String getQuotLvPrice() { return quotLvPrice; }
|
|
|
|
|
|
|
|
public void setQuotLvPrice(String quotLvPrice) { this.quotLvPrice = quotLvPrice; }
|
|
|
|
public String getQuotTongPrice() { return quotTongPrice; }
|
|
|
|
|
|
|
|
public void setQuotTongPrice(String quotTongPrice) { this.quotTongPrice = quotTongPrice; }
|
2024-05-28 17:27:29 +08:00
|
|
|
public String getQuotMatpriceDiff() { return quotMatpriceDiff; }
|
|
|
|
|
|
|
|
public void setQuotMatpriceDiff(String quotMatpriceDiff) { this.quotMatpriceDiff = quotMatpriceDiff; }
|
2024-06-20 11:10:06 +08:00
|
|
|
public String getQuotMatpriceDiff2() { return quotMatpriceDiff2; }
|
|
|
|
|
|
|
|
public void setQuotMatpriceDiff2(String quotMatpriceDiff2) { this.quotMatpriceDiff2 = quotMatpriceDiff2; }
|
2024-05-24 11:04:09 +08:00
|
|
|
public String getQuotPrint() { return quotPrint; }
|
|
|
|
|
|
|
|
public void setQuotPrint(String quotPrint) { this.quotPrint = quotPrint; }
|
|
|
|
public String getQuotPrintUserName() { return quotPrintUserName; }
|
|
|
|
|
|
|
|
public void setQuotPrintUserName(String quotPrintUserName) { this.quotPrintUserName = quotPrintUserName; }
|
2024-06-18 11:58:52 +08:00
|
|
|
public String getQuotPrintUserNickName() { return quotPrintUserNickName; }
|
|
|
|
|
|
|
|
public void setQuotPrintUserNickName(String quotPrintUserNickName) { this.quotPrintUserNickName = quotPrintUserNickName; }
|
2024-04-02 11:24:37 +08:00
|
|
|
public void setQuotQuantity(String quotQuantity)
|
|
|
|
{
|
|
|
|
this.quotQuantity = quotQuantity;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotQuantity()
|
|
|
|
{
|
|
|
|
return quotQuantity;
|
|
|
|
}
|
|
|
|
public void setQuotTotalPrice(String quotTotalPrice)
|
|
|
|
{
|
|
|
|
this.quotTotalPrice = quotTotalPrice;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotTotalPrice()
|
|
|
|
{
|
|
|
|
return quotTotalPrice;
|
|
|
|
}
|
|
|
|
public void setQuotCheckUserName(String quotCheckUserName)
|
|
|
|
{
|
|
|
|
this.quotCheckUserName = quotCheckUserName;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotCheckUserName()
|
|
|
|
{
|
|
|
|
return quotCheckUserName;
|
|
|
|
}
|
2024-04-07 11:16:40 +08:00
|
|
|
public void setQuotCheckUserNickname(String quotCheckUserNickname) { this.quotCheckUserNickname = quotCheckUserNickname; }
|
2024-04-02 11:24:37 +08:00
|
|
|
|
|
|
|
public String getQuotCheckUserNickname()
|
|
|
|
{
|
|
|
|
return quotCheckUserNickname;
|
|
|
|
}
|
|
|
|
public void setQuotApprovalStatus(String quotApprovalStatus)
|
|
|
|
{
|
|
|
|
this.quotApprovalStatus = quotApprovalStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getQuotApprovalStatus()
|
|
|
|
{
|
|
|
|
return quotApprovalStatus;
|
|
|
|
}
|
2024-04-03 08:33:34 +08:00
|
|
|
public String getCreateName() {return createName;}
|
2024-04-02 11:24:37 +08:00
|
|
|
|
2024-04-03 08:33:34 +08:00
|
|
|
public void setCreateName(String createName) {this.createName = createName;}
|
2024-06-03 17:14:47 +08:00
|
|
|
public List<QuotMaterial> getQuotMaterialList() { return quotMaterialList; }
|
2024-04-02 11:24:37 +08:00
|
|
|
|
|
|
|
public void setQuotMaterialList(List<QuotMaterial> quotMaterialList)
|
|
|
|
{
|
|
|
|
this.quotMaterialList = quotMaterialList;
|
|
|
|
}
|
|
|
|
|
2024-04-07 11:16:40 +08:00
|
|
|
public String getQuotJsxzStandard() {return quotJsxzStandard;}
|
|
|
|
public void setQuotJsxzStandard(String quotJsxzStandard) {this.quotJsxzStandard = quotJsxzStandard; }
|
|
|
|
|
|
|
|
public String getQuotJsxzApprovalStatus() {return quotJsxzApprovalStatus; }
|
|
|
|
public void setQuotJsxzApproval_status(String quotJsxzApproval_status) {this.quotJsxzApprovalStatus = quotJsxzApprovalStatus; }
|
|
|
|
|
|
|
|
public String getQuotJsxzChapter() {return quotJsxzChapter; }
|
|
|
|
public void setQuotJsxzChapter(String quotJsxzChapter) {this.quotJsxzChapter = quotJsxzChapter; }
|
|
|
|
|
|
|
|
public String getQuotJsxzTechnicalRequirement() {return quotJsxzTechnicalRequirement; }
|
|
|
|
public void setQuotJsxzTechnicalRequirement(String quotJsxzTechnicalRequirement) {this.quotJsxzTechnicalRequirement = quotJsxzTechnicalRequirement; }
|
|
|
|
|
2024-04-11 12:39:55 +08:00
|
|
|
public String[] getQuotJsxzGroup() {return quotJsxzGroup; }
|
|
|
|
public void setQuotJsxzGroup(String[] quotJsxzGroup) { this.quotJsxzGroup = quotJsxzGroup; }
|
|
|
|
|
|
|
|
public String getQuotJsxzGroupValues() { return quotJsxzGroupValues; }
|
|
|
|
public void setQuotJsxzGroupValues(String quotJsxzGroupValues) { this.quotJsxzGroupValues = quotJsxzGroupValues; }
|
2024-04-07 11:16:40 +08:00
|
|
|
|
|
|
|
public String getQuotJsxzConfirmId() { return quotJsxzConfirmId; }
|
|
|
|
public void setQuotJsxzConfirmId(String quotJsxzConfirmId) { this.quotJsxzConfirmId = quotJsxzConfirmId; }
|
|
|
|
|
2024-04-08 14:02:04 +08:00
|
|
|
public String getQuotJsxzConfirmCode() { return quotJsxzConfirmCode; }
|
|
|
|
public void setQuotJsxzConfirmCode(String quotJsxzConfirmCode) { this.quotJsxzConfirmCode = quotJsxzConfirmCode; }
|
2024-04-07 11:16:40 +08:00
|
|
|
|
|
|
|
public void setQuotJsxzApprovalStatus(String quotJsxzApprovalStatus) { this.quotJsxzApprovalStatus = quotJsxzApprovalStatus; }
|
2024-04-08 09:57:49 +08:00
|
|
|
public String getQuotJsqrTlApprovalStatus() { return quotJsqrTlApprovalStatus; }
|
2024-04-07 11:16:40 +08:00
|
|
|
|
2024-04-08 09:57:49 +08:00
|
|
|
public void setQuotJsqrTlApprovalStatus(String quotJsqrTlApprovalStatus) { this.quotJsqrTlApprovalStatus = quotJsqrTlApprovalStatus; }
|
|
|
|
public String getQuotJsqrTlRemark() { return quotJsqrTlRemark; }
|
|
|
|
|
|
|
|
public void setQuotJsqrTlRemark(String quotJsqrTlRemark) { this.quotJsqrTlRemark = quotJsqrTlRemark; }
|
|
|
|
public String getQuotJsqrDyApprovalStatus() { return quotJsqrDyApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotJsqrDyApprovalStatus(String quotJsqrDyApprovalStatus) { this.quotJsqrDyApprovalStatus = quotJsqrDyApprovalStatus; }
|
|
|
|
public String getQuotJsqrDyRemark() { return quotJsqrDyRemark; }
|
|
|
|
|
|
|
|
public void setQuotJsqrDyRemark(String quotJsqrDyRemark) { this.quotJsqrDyRemark = quotJsqrDyRemark; }
|
|
|
|
public String getQuotJsqrZyApprovalStatus() { return quotJsqrZyApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotJsqrZyApprovalStatus(String quotJsqrZyApprovalStatus) { this.quotJsqrZyApprovalStatus = quotJsqrZyApprovalStatus; }
|
|
|
|
public String getQuotJsqrZyRemark() { return quotJsqrZyRemark; }
|
|
|
|
|
|
|
|
public void setQuotJsqrZyRemark(String quotJsqrZyRemark) { this.quotJsqrZyRemark = quotJsqrZyRemark; }
|
|
|
|
public String getQuotJsqrQtApprovalStatus() { return quotJsqrQtApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotJsqrQtApprovalStatus(String quotJsqrQtApprovalStatus) { this.quotJsqrQtApprovalStatus = quotJsqrQtApprovalStatus; }
|
|
|
|
public String getQuotJsqrQtRemark() { return quotJsqrQtRemark; }
|
|
|
|
|
|
|
|
public void setQuotJsqrQtRemark(String quotJsqrQtRemark) { this.quotJsqrQtRemark = quotJsqrQtRemark; }
|
2024-04-16 15:55:02 +08:00
|
|
|
public String getQuotHjId() { return quotHjId; }
|
|
|
|
|
|
|
|
public void setQuotHjId(String quotHjId) { this.quotHjId = quotHjId; }
|
|
|
|
public String getQuotHjCode() { return quotHjCode; }
|
|
|
|
|
|
|
|
public void setQuotHjCode(String quotHjCode) { this.quotHjCode = quotHjCode; }
|
|
|
|
public String getQuotHjApprovalStatus() { return quotHjApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotHjApprovalStatus(String quotHjApprovalStatus) { this.quotHjApprovalStatus = quotHjApprovalStatus; }
|
|
|
|
public String getQuotHjPricingDate() { return quotHjPricingDate; }
|
|
|
|
|
|
|
|
public void setQuotHjPricingDate(String quotHjPricingDate) { this.quotHjPricingDate = quotHjPricingDate; }
|
|
|
|
public String getQuotHjRemark() { return quotHjRemark; }
|
|
|
|
|
|
|
|
public void setQuotHjRemark(String quotHjRemark) { this.quotHjRemark = quotHjRemark; }
|
2024-06-03 17:14:47 +08:00
|
|
|
public String getQuotJswApprovalStatus() { return quotJswApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotJswApprovalStatus(String quotJswApprovalStatus) { this.quotJswApprovalStatus = quotJswApprovalStatus; }
|
2024-06-04 08:52:22 +08:00
|
|
|
public String getQuotOAApprovalStatus() { return quotOAApprovalStatus; }
|
|
|
|
|
|
|
|
public void setQuotOAApprovalStatus(String quotOAApprovalStatus) { this.quotOAApprovalStatus = quotOAApprovalStatus; }
|
2024-06-05 17:26:59 +08:00
|
|
|
public String getQuotOAApprovalStatusRemark() { return quotOAApprovalStatusRemark; }
|
|
|
|
|
|
|
|
public void setQuotOAApprovalStatusRemark(String quotOAApprovalStatusRemark) { this.quotOAApprovalStatusRemark = quotOAApprovalStatusRemark; }
|
2024-04-02 11:24:37 +08:00
|
|
|
}
|