liuxiaoxu
1 month ago
1 changed files with 0 additions and 177 deletions
@ -1,177 +0,0 @@ |
|||
package com.ruoyi.system.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; |
|||
|
|||
/** |
|||
* 物料清单成品对象 bom_finish_product |
|||
* |
|||
* @author ruoyi |
|||
* @date 2022-11-01 |
|||
*/ |
|||
public class BomFinishProduct extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** 物料清单成品id */ |
|||
private Long bomFinishProductId; |
|||
|
|||
/** 清单编号 */ |
|||
@Excel(name = "清单编号") |
|||
private String bomCode; |
|||
|
|||
/** 成品编码 */ |
|||
@Excel(name = "成品编码") |
|||
private String finishProductCode; |
|||
|
|||
/** 成品名称 */ |
|||
@Excel(name = "成品名称") |
|||
private String finishProductName; |
|||
|
|||
/** 客户代码 */ |
|||
@Excel(name = "客户代码") |
|||
private String enterpriseCode; |
|||
|
|||
/** 客户名称 */ |
|||
@Excel(name = "客户名称") |
|||
private String enterpriseName; |
|||
|
|||
/** 规格型号 */ |
|||
@Excel(name = "规格型号") |
|||
private String specificationModel; |
|||
|
|||
/** 机种 */ |
|||
@Excel(name = "机种") |
|||
private String typeMachine; |
|||
|
|||
/** 类别 */ |
|||
@Excel(name = "类别") |
|||
private String materialCategory; |
|||
|
|||
/** 使用量 */ |
|||
@Excel(name = "使用量") |
|||
private Long useWeight; |
|||
|
|||
/** 单位 */ |
|||
@Excel(name = "单位") |
|||
private String company; |
|||
|
|||
public void setBomFinishProductId(Long bomFinishProductId) |
|||
{ |
|||
this.bomFinishProductId = bomFinishProductId; |
|||
} |
|||
|
|||
public Long getBomFinishProductId() |
|||
{ |
|||
return bomFinishProductId; |
|||
} |
|||
public void setBomCode(String bomCode) |
|||
{ |
|||
this.bomCode = bomCode; |
|||
} |
|||
|
|||
public String getBomCode() |
|||
{ |
|||
return bomCode; |
|||
} |
|||
public void setFinishProductCode(String finishProductCode) |
|||
{ |
|||
this.finishProductCode = finishProductCode; |
|||
} |
|||
|
|||
public String getFinishProductCode() |
|||
{ |
|||
return finishProductCode; |
|||
} |
|||
public void setFinishProductName(String finishProductName) |
|||
{ |
|||
this.finishProductName = finishProductName; |
|||
} |
|||
|
|||
public String getFinishProductName() |
|||
{ |
|||
return finishProductName; |
|||
} |
|||
public void setEnterpriseCode(String enterpriseCode) |
|||
{ |
|||
this.enterpriseCode = enterpriseCode; |
|||
} |
|||
|
|||
public String getEnterpriseCode() |
|||
{ |
|||
return enterpriseCode; |
|||
} |
|||
public void setEnterpriseName(String enterpriseName) |
|||
{ |
|||
this.enterpriseName = enterpriseName; |
|||
} |
|||
|
|||
public String getEnterpriseName() |
|||
{ |
|||
return enterpriseName; |
|||
} |
|||
public void setSpecificationModel(String specificationModel) |
|||
{ |
|||
this.specificationModel = specificationModel; |
|||
} |
|||
|
|||
public String getSpecificationModel() |
|||
{ |
|||
return specificationModel; |
|||
} |
|||
public void setTypeMachine(String typeMachine) |
|||
{ |
|||
this.typeMachine = typeMachine; |
|||
} |
|||
|
|||
public String getTypeMachine() |
|||
{ |
|||
return typeMachine; |
|||
} |
|||
public void setMaterialCategory(String materialCategory) |
|||
{ |
|||
this.materialCategory = materialCategory; |
|||
} |
|||
|
|||
public String getMaterialCategory() |
|||
{ |
|||
return materialCategory; |
|||
} |
|||
public void setUseWeight(Long useWeight) |
|||
{ |
|||
this.useWeight = useWeight; |
|||
} |
|||
|
|||
public Long getUseWeight() |
|||
{ |
|||
return useWeight; |
|||
} |
|||
public void setCompany(String company) |
|||
{ |
|||
this.company = company; |
|||
} |
|||
|
|||
public String getCompany() |
|||
{ |
|||
return company; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|||
.append("bomFinishProductId", getBomFinishProductId()) |
|||
.append("bomCode", getBomCode()) |
|||
.append("finishProductCode", getFinishProductCode()) |
|||
.append("finishProductName", getFinishProductName()) |
|||
.append("enterpriseCode", getEnterpriseCode()) |
|||
.append("enterpriseName", getEnterpriseName()) |
|||
.append("specificationModel", getSpecificationModel()) |
|||
.append("typeMachine", getTypeMachine()) |
|||
.append("materialCategory", getMaterialCategory()) |
|||
.append("useWeight", getUseWeight()) |
|||
.append("company", getCompany()) |
|||
.toString(); |
|||
} |
|||
} |
Loading…
Reference in new issue