JNBusiness/ruoyi-system/src/main/java/com/ruoyi/quot/domain/QuotMaterial.java

159 lines
3.6 KiB
Java
Raw Normal View History

2024-04-02 11:24:37 +08:00
package com.ruoyi.quot.domain;
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;
2024-05-21 14:32:51 +08:00
import com.ruoyi.common.annotation.Excel.Type;
2024-05-20 14:31:20 +08:00
import java.math.BigDecimal;
2024-04-02 11:24:37 +08:00
/**
* 报价单-产品对象 quot_material
2024-05-20 14:31:20 +08:00
*
2024-04-02 11:24:37 +08:00
* @author ruoyi
* @date 2024-04-01
*/
public class QuotMaterial extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** */
private String matId;
/** 型号 */
2024-05-21 14:32:51 +08:00
@Excel(name = "型号")
2024-04-02 11:24:37 +08:00
private String matXingh;
/** 规格 */
2024-05-21 14:32:51 +08:00
@Excel(name = "规格")
2024-04-02 11:24:37 +08:00
private String matGuig;
/** 电压 */
2024-05-21 14:32:51 +08:00
@Excel(name = "电压")
2024-04-02 11:24:37 +08:00
private String matDiany;
2024-05-24 11:04:09 +08:00
/** 标准 */
private String matStandard;
2024-04-02 11:24:37 +08:00
/** 单位 */
2024-05-21 14:32:51 +08:00
@Excel(name = "单位")
2024-04-02 11:24:37 +08:00
private String matDanw;
/** 数量 */
2024-05-21 14:32:51 +08:00
@Excel(name = "数量")
2024-05-20 14:31:20 +08:00
private BigDecimal matSl;
2024-04-02 11:24:37 +08:00
2024-05-24 11:04:09 +08:00
/** 备注 */
@Excel(name = "备注")
private String matRemark;
2024-05-24 15:46:00 +08:00
/** 料价 */
private BigDecimal matMatprice;
/** 红本价 */
private BigDecimal matPrice;
/** 报价 */
private BigDecimal matQuotPrice;
/** 报价金额 */
private BigDecimal matQuotAllPrice;
/** 料价价差率 */
2024-06-03 17:14:47 +08:00
private BigDecimal matMatpriceDiff;
2024-05-24 15:46:00 +08:00
2024-05-24 16:41:38 +08:00
/** 排序 */
private Integer index;//序号
2024-05-24 15:46:00 +08:00
2024-04-02 11:24:37 +08:00
/** */
private String quotId;
2024-05-20 14:31:20 +08:00
public void setMatId(String matId)
2024-04-02 11:24:37 +08:00
{
this.matId = matId;
}
2024-05-20 14:31:20 +08:00
public String getMatId()
2024-04-02 11:24:37 +08:00
{
return matId;
}
2024-05-20 14:31:20 +08:00
public void setMatXingh(String matXingh)
2024-04-02 11:24:37 +08:00
{
this.matXingh = matXingh;
}
2024-05-20 14:31:20 +08:00
public String getMatXingh()
2024-04-02 11:24:37 +08:00
{
return matXingh;
}
2024-05-20 14:31:20 +08:00
public void setMatGuig(String matGuig)
2024-04-02 11:24:37 +08:00
{
this.matGuig = matGuig;
}
2024-05-20 14:31:20 +08:00
public String getMatGuig()
2024-04-02 11:24:37 +08:00
{
return matGuig;
}
2024-05-20 14:31:20 +08:00
public void setMatDiany(String matDiany)
2024-04-02 11:24:37 +08:00
{
this.matDiany = matDiany;
}
2024-05-20 14:31:20 +08:00
public String getMatDiany()
2024-04-02 11:24:37 +08:00
{
return matDiany;
}
2024-05-20 14:31:20 +08:00
public void setMatDanw(String matDanw)
2024-04-02 11:24:37 +08:00
{
this.matDanw = matDanw;
}
2024-05-20 14:31:20 +08:00
public String getMatDanw()
2024-04-02 11:24:37 +08:00
{
return matDanw;
}
2024-05-24 11:04:09 +08:00
public String getMatStandard() { return matStandard; }
public void setMatStandard(String matStandard) { this.matStandard = matStandard; }
2024-05-20 14:31:20 +08:00
public void setMatSl(BigDecimal matSl)
2024-04-02 11:24:37 +08:00
{
this.matSl = matSl;
}
2024-05-20 14:31:20 +08:00
public BigDecimal getMatSl()
2024-04-02 11:24:37 +08:00
{
return matSl;
}
2024-05-24 11:04:09 +08:00
public String getMatRemark() { return matRemark; }
public void setMatRemark(String matRemark) { this.matRemark = matRemark; }
2024-05-24 15:46:00 +08:00
public BigDecimal getMatMatprice() { return matMatprice; }
public void setMatMatprice(BigDecimal matMatprice) { this.matMatprice = matMatprice; }
public BigDecimal getMatPrice() { return matPrice; }
public void setMatPrice(BigDecimal matPrice) { this.matPrice = matPrice; }
public BigDecimal getMatQuotPrice() { return matQuotPrice; }
public void setMatQuotPrice(BigDecimal matQuotPrice) { this.matQuotPrice = matQuotPrice; }
public BigDecimal getMatQuotAllPrice() { return matQuotAllPrice; }
public void setMatQuotAllPrice(BigDecimal matQuotAllPrice) { this.matQuotAllPrice = matQuotAllPrice; }
2024-06-03 17:14:47 +08:00
public BigDecimal getMatMatpriceDiff() { return matMatpriceDiff; }
2024-05-24 15:46:00 +08:00
2024-06-03 17:14:47 +08:00
public void setMatMatpriceDiff(BigDecimal matMatpriceDiff) { this.matMatpriceDiff = matMatpriceDiff; }
2024-05-24 16:41:38 +08:00
public Integer getIndex() { return index; }
public void setIndex(Integer index) { this.index = index; }
2024-05-20 14:31:20 +08:00
public void setQuotId(String quotId)
2024-04-02 11:24:37 +08:00
{
this.quotId = quotId;
}
2024-05-20 14:31:20 +08:00
public String getQuotId()
2024-04-02 11:24:37 +08:00
{
return quotId;
}
}