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

123 lines
2.4 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-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
/** */
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-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-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;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("matId", getMatId())
.append("matXingh", getMatXingh())
.append("matGuig", getMatGuig())
.append("matDiany", getMatDiany())
.append("matDanw", getMatDanw())
.append("matSl", getMatSl())
.append("quotId", getQuotId())
.toString();
}
}