195 lines
4.0 KiB
Java
195 lines
4.0 KiB
Java
|
package com.ruoyi.quot.domain;
|
||
|
|
||
|
import com.ruoyi.common.annotation.Excel;
|
||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
||
|
import java.util.Date;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* 报价对象 SysOaQuot
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-04-01
|
||
|
*/
|
||
|
public class SysOaQuot extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** oa用户id */
|
||
|
private Integer userId;
|
||
|
|
||
|
/** oa部门ID */
|
||
|
private Integer departmentId;
|
||
|
|
||
|
/** 提交oa时间 */
|
||
|
private String submissionTime;
|
||
|
|
||
|
/** 报价单id */
|
||
|
private String quotId;
|
||
|
|
||
|
/** 报价单号 */
|
||
|
private String quotCode;
|
||
|
|
||
|
/** 业务员 */
|
||
|
private String quotSalesmanName;
|
||
|
|
||
|
/** 客户名称 */
|
||
|
private String quotCustomerName;
|
||
|
|
||
|
/** 地址 */
|
||
|
private String quotAddress;
|
||
|
|
||
|
/** 联系电话 */
|
||
|
private String quotPhone;
|
||
|
|
||
|
/** 询价日期 */
|
||
|
private Date quotInquiryDate;
|
||
|
|
||
|
/** 项目名称 */
|
||
|
private String quotProject;
|
||
|
|
||
|
/** 报价要求 */
|
||
|
private String quotQuotationRequire;
|
||
|
|
||
|
/** 铝价 */
|
||
|
private String quotLvPrice;
|
||
|
|
||
|
/** 铜价 */
|
||
|
private String quotTongPrice;
|
||
|
|
||
|
/** 整单料价价差率 */
|
||
|
private String quotMatpriceDiff;
|
||
|
|
||
|
/** 明细 */
|
||
|
List<QuotMaterial> materials;
|
||
|
|
||
|
public Integer getUserId() {
|
||
|
return userId;
|
||
|
}
|
||
|
|
||
|
public void setUserId(Integer userId) {
|
||
|
this.userId = userId;
|
||
|
}
|
||
|
|
||
|
public Integer getDepartmentId() {
|
||
|
return departmentId;
|
||
|
}
|
||
|
|
||
|
public void setDepartmentId(Integer departmentId) {
|
||
|
this.departmentId = departmentId;
|
||
|
}
|
||
|
|
||
|
public String getSubmissionTime() {
|
||
|
return submissionTime;
|
||
|
}
|
||
|
|
||
|
public void setSubmissionTime(String submissionTime) {
|
||
|
this.submissionTime = submissionTime;
|
||
|
}
|
||
|
|
||
|
public String getQuotId() {
|
||
|
return quotId;
|
||
|
}
|
||
|
|
||
|
public void setQuotId(String quotId) {
|
||
|
this.quotId = quotId;
|
||
|
}
|
||
|
|
||
|
public String getQuotCode() {
|
||
|
return quotCode;
|
||
|
}
|
||
|
|
||
|
public void setQuotCode(String quotCode) {
|
||
|
this.quotCode = quotCode;
|
||
|
}
|
||
|
|
||
|
public String getQuotSalesmanName() {
|
||
|
return quotSalesmanName;
|
||
|
}
|
||
|
|
||
|
public void setQuotSalesmanName(String quotSalesmanName) {
|
||
|
this.quotSalesmanName = quotSalesmanName;
|
||
|
}
|
||
|
|
||
|
public String getQuotCustomerName() {
|
||
|
return quotCustomerName;
|
||
|
}
|
||
|
|
||
|
public void setQuotCustomerName(String quotCustomerName) {
|
||
|
this.quotCustomerName = quotCustomerName;
|
||
|
}
|
||
|
|
||
|
public String getQuotAddress() {
|
||
|
return quotAddress;
|
||
|
}
|
||
|
|
||
|
public void setQuotAddress(String quotAddress) {
|
||
|
this.quotAddress = quotAddress;
|
||
|
}
|
||
|
|
||
|
public String getQuotPhone() {
|
||
|
return quotPhone;
|
||
|
}
|
||
|
|
||
|
public void setQuotPhone(String quotPhone) {
|
||
|
this.quotPhone = quotPhone;
|
||
|
}
|
||
|
|
||
|
public Date getQuotInquiryDate() {
|
||
|
return quotInquiryDate;
|
||
|
}
|
||
|
|
||
|
public void setQuotInquiryDate(Date quotInquiryDate) {
|
||
|
this.quotInquiryDate = quotInquiryDate;
|
||
|
}
|
||
|
|
||
|
public String getQuotProject() {
|
||
|
return quotProject;
|
||
|
}
|
||
|
|
||
|
public void setQuotProject(String quotProject) {
|
||
|
this.quotProject = quotProject;
|
||
|
}
|
||
|
|
||
|
public String getQuotQuotationRequire() {
|
||
|
return quotQuotationRequire;
|
||
|
}
|
||
|
|
||
|
public void setQuotQuotationRequire(String quotQuotationRequire) {
|
||
|
this.quotQuotationRequire = quotQuotationRequire;
|
||
|
}
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
public String getQuotMatpriceDiff() {
|
||
|
return quotMatpriceDiff;
|
||
|
}
|
||
|
|
||
|
public void setQuotMatpriceDiff(String quotMatpriceDiff) {
|
||
|
this.quotMatpriceDiff = quotMatpriceDiff;
|
||
|
}
|
||
|
|
||
|
public List<QuotMaterial> getMaterials() {
|
||
|
return materials;
|
||
|
}
|
||
|
|
||
|
public void setMaterials(List<QuotMaterial> materials) {
|
||
|
this.materials = materials;
|
||
|
}
|
||
|
}
|