116 lines
2.2 KiB
Java
116 lines
2.2 KiB
Java
|
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;
|
||
|
|
||
|
/**
|
||
|
* 报价单-产品对象 quot_material
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-04-01
|
||
|
*/
|
||
|
public class QuotMaterial extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** */
|
||
|
private String matId;
|
||
|
|
||
|
/** 型号 */
|
||
|
private String matXingh;
|
||
|
|
||
|
/** 规格 */
|
||
|
private String matGuig;
|
||
|
|
||
|
/** 电压 */
|
||
|
private String matDiany;
|
||
|
|
||
|
/** 单位 */
|
||
|
private String matDanw;
|
||
|
|
||
|
/** 数量 */
|
||
|
private Long matSl;
|
||
|
|
||
|
/** */
|
||
|
private String quotId;
|
||
|
|
||
|
public void setMatId(String matId)
|
||
|
{
|
||
|
this.matId = matId;
|
||
|
}
|
||
|
|
||
|
public String getMatId()
|
||
|
{
|
||
|
return matId;
|
||
|
}
|
||
|
public void setMatXingh(String matXingh)
|
||
|
{
|
||
|
this.matXingh = matXingh;
|
||
|
}
|
||
|
|
||
|
public String getMatXingh()
|
||
|
{
|
||
|
return matXingh;
|
||
|
}
|
||
|
public void setMatGuig(String matGuig)
|
||
|
{
|
||
|
this.matGuig = matGuig;
|
||
|
}
|
||
|
|
||
|
public String getMatGuig()
|
||
|
{
|
||
|
return matGuig;
|
||
|
}
|
||
|
public void setMatDiany(String matDiany)
|
||
|
{
|
||
|
this.matDiany = matDiany;
|
||
|
}
|
||
|
|
||
|
public String getMatDiany()
|
||
|
{
|
||
|
return matDiany;
|
||
|
}
|
||
|
public void setMatDanw(String matDanw)
|
||
|
{
|
||
|
this.matDanw = matDanw;
|
||
|
}
|
||
|
|
||
|
public String getMatDanw()
|
||
|
{
|
||
|
return matDanw;
|
||
|
}
|
||
|
public void setMatSl(Long matSl)
|
||
|
{
|
||
|
this.matSl = matSl;
|
||
|
}
|
||
|
|
||
|
public Long getMatSl()
|
||
|
{
|
||
|
return matSl;
|
||
|
}
|
||
|
public void setQuotId(String quotId)
|
||
|
{
|
||
|
this.quotId = quotId;
|
||
|
}
|
||
|
|
||
|
public String getQuotId()
|
||
|
{
|
||
|
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();
|
||
|
}
|
||
|
}
|