From 314682258bbc63c59c37962d75fe33bcc39d604f Mon Sep 17 00:00:00 2001 From: liuxiaoxu <1793812695@qq.com> Date: Fri, 18 Oct 2024 15:59:40 +0800 Subject: [PATCH] =?UTF-8?q?[delete]=20=E5=88=A0=E9=99=A4=E6=97=A7=E7=89=88?= =?UTF-8?q?=E6=97=A0=E7=94=A8=E7=9A=84=E7=89=A9=E6=96=99=E6=B8=85=E5=8D=95?= =?UTF-8?q?=E6=88=90=E5=93=81=E5=AF=B9=E8=B1=A1=20bom=5Ffinish=5Fproduct?= =?UTF-8?q?=E5=92=8C=E7=B3=BB=E7=BB=9F=E4=B8=AD=E5=AF=B9=E5=BA=94=E7=9A=84?= =?UTF-8?q?=E5=89=8D=E7=AB=AF=E6=89=80=E6=9C=89=E4=BB=A3=E7=A0=81=E5=92=8C?= =?UTF-8?q?=E5=90=8E=E7=AB=AF=E6=89=80=E6=9C=89=E4=BB=A3=E7=A0=81=20?= =?UTF-8?q?=E5=92=8C=E5=AF=B9=E5=BA=94=E7=9A=84=E7=B3=BB=E7=BB=9F=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E6=95=B0=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ruoyi/system/domain/BomFinishProduct.java | 177 ------------------ 1 file changed, 177 deletions(-) delete mode 100644 ruoyi-admin/src/main/java/com/ruoyi/system/domain/BomFinishProduct.java diff --git a/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BomFinishProduct.java b/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BomFinishProduct.java deleted file mode 100644 index d657e901..00000000 --- a/ruoyi-admin/src/main/java/com/ruoyi/system/domain/BomFinishProduct.java +++ /dev/null @@ -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(); - } -}