|
|
|
@ -1,4 +1,5 @@
@@ -1,4 +1,5 @@
|
|
|
|
|
package com.ruoyi.dhc.domain; |
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal; |
|
|
|
|
import java.util.Date; |
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat; |
|
|
|
@ -11,7 +12,7 @@ import io.swagger.annotations.ApiModelProperty;
@@ -11,7 +12,7 @@ import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 产品信息对象 dhc_product |
|
|
|
|
* |
|
|
|
|
* |
|
|
|
|
* @author ruoyi |
|
|
|
|
* @date 2025-03-14 |
|
|
|
|
*/ |
|
|
|
@ -33,29 +34,24 @@ public class DhcProduct extends BaseEntity
@@ -33,29 +34,24 @@ public class DhcProduct extends BaseEntity
|
|
|
|
|
@Excel(name = "产品线名称") |
|
|
|
|
private String productLineName; |
|
|
|
|
|
|
|
|
|
/** 立项单号 */ |
|
|
|
|
@ApiModelProperty("立项单号") |
|
|
|
|
@Excel(name = "立项单号") |
|
|
|
|
private String projectNum; |
|
|
|
|
|
|
|
|
|
/** 内部型号 */ |
|
|
|
|
@ApiModelProperty("内部型号") |
|
|
|
|
@Excel(name = "内部型号") |
|
|
|
|
private String internalModel; |
|
|
|
|
|
|
|
|
|
/** 产品大类编码 */ |
|
|
|
|
@ApiModelProperty("产品大类编码") |
|
|
|
|
@Excel(name = "产品大类编码") |
|
|
|
|
/** 产品大类 */ |
|
|
|
|
@ApiModelProperty("产品大类") |
|
|
|
|
@Excel(name = "产品大类") |
|
|
|
|
private String productCategoryLarge; |
|
|
|
|
|
|
|
|
|
/** 产品中类编码 */ |
|
|
|
|
@ApiModelProperty("产品中类编码") |
|
|
|
|
@Excel(name = "产品中类编码") |
|
|
|
|
/** 产品中类 */ |
|
|
|
|
@ApiModelProperty("产品中类") |
|
|
|
|
@Excel(name = "产品中类") |
|
|
|
|
private String productCategoryMiddle; |
|
|
|
|
|
|
|
|
|
/** 产品小类编码 */ |
|
|
|
|
@ApiModelProperty("产品小类编码") |
|
|
|
|
@Excel(name = "产品小类编码") |
|
|
|
|
/** 产品小类 */ |
|
|
|
|
@ApiModelProperty("产品小类") |
|
|
|
|
@Excel(name = "产品小类") |
|
|
|
|
private String productCategorySmall; |
|
|
|
|
|
|
|
|
|
/** 产品品类 */ |
|
|
|
@ -63,11 +59,6 @@ public class DhcProduct extends BaseEntity
@@ -63,11 +59,6 @@ public class DhcProduct extends BaseEntity
|
|
|
|
|
@Excel(name = "产品品类") |
|
|
|
|
private String productCategory; |
|
|
|
|
|
|
|
|
|
/** 产品系列 */ |
|
|
|
|
@ApiModelProperty("产品系列") |
|
|
|
|
@Excel(name = "产品系列") |
|
|
|
|
private String productSeries; |
|
|
|
|
|
|
|
|
|
/** 基础型号 */ |
|
|
|
|
@ApiModelProperty("基础型号") |
|
|
|
|
@Excel(name = "基础型号") |
|
|
|
@ -130,21 +121,6 @@ public class DhcProduct extends BaseEntity
@@ -130,21 +121,6 @@ public class DhcProduct extends BaseEntity
|
|
|
|
|
@Excel(name = "产品尺寸-高") |
|
|
|
|
private BigDecimal productHeight; |
|
|
|
|
|
|
|
|
|
/** 装柜数量-20GP */ |
|
|
|
|
@ApiModelProperty("装柜数量-20GP") |
|
|
|
|
@Excel(name = "装柜数量-20GP") |
|
|
|
|
private Long loadingQuantity20gp; |
|
|
|
|
|
|
|
|
|
/** 装柜数量-40GP */ |
|
|
|
|
@ApiModelProperty("装柜数量-40GP") |
|
|
|
|
@Excel(name = "装柜数量-40GP") |
|
|
|
|
private Long loadingQuantity40gp; |
|
|
|
|
|
|
|
|
|
/** 装柜数量-40HQ */ |
|
|
|
|
@ApiModelProperty("装柜数量-40HQ") |
|
|
|
|
@Excel(name = "装柜数量-40HQ") |
|
|
|
|
private Long loadingQuantity40hq; |
|
|
|
|
|
|
|
|
|
/** 最小订单量 */ |
|
|
|
|
@ApiModelProperty("最小订单量") |
|
|
|
|
@Excel(name = "最小订单量") |
|
|
|
@ -168,273 +144,228 @@ public class DhcProduct extends BaseEntity
@@ -168,273 +144,228 @@ public class DhcProduct extends BaseEntity
|
|
|
|
|
/** 删除标志(0代表存在 1代表删除) */ |
|
|
|
|
private String delFlag; |
|
|
|
|
|
|
|
|
|
public void setProductId(Long productId) |
|
|
|
|
public void setProductId(Long productId) |
|
|
|
|
{ |
|
|
|
|
this.productId = productId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getProductId() |
|
|
|
|
public Long getProductId() |
|
|
|
|
{ |
|
|
|
|
return productId; |
|
|
|
|
} |
|
|
|
|
public void setProductLine(String productLine) |
|
|
|
|
public void setProductLine(String productLine) |
|
|
|
|
{ |
|
|
|
|
this.productLine = productLine; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductLine() |
|
|
|
|
public String getProductLine() |
|
|
|
|
{ |
|
|
|
|
return productLine; |
|
|
|
|
} |
|
|
|
|
public void setProductLineName(String productLineName) |
|
|
|
|
public void setProductLineName(String productLineName) |
|
|
|
|
{ |
|
|
|
|
this.productLineName = productLineName; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductLineName() |
|
|
|
|
public String getProductLineName() |
|
|
|
|
{ |
|
|
|
|
return productLineName; |
|
|
|
|
} |
|
|
|
|
public void setProjectNum(String projectNum) |
|
|
|
|
{ |
|
|
|
|
this.projectNum = projectNum; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProjectNum() |
|
|
|
|
{ |
|
|
|
|
return projectNum; |
|
|
|
|
} |
|
|
|
|
public void setInternalModel(String internalModel) |
|
|
|
|
public void setInternalModel(String internalModel) |
|
|
|
|
{ |
|
|
|
|
this.internalModel = internalModel; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getInternalModel() |
|
|
|
|
public String getInternalModel() |
|
|
|
|
{ |
|
|
|
|
return internalModel; |
|
|
|
|
} |
|
|
|
|
public void setProductCategoryLarge(String productCategoryLarge) |
|
|
|
|
public void setProductCategoryLarge(String productCategoryLarge) |
|
|
|
|
{ |
|
|
|
|
this.productCategoryLarge = productCategoryLarge; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductCategoryLarge() |
|
|
|
|
public String getProductCategoryLarge() |
|
|
|
|
{ |
|
|
|
|
return productCategoryLarge; |
|
|
|
|
} |
|
|
|
|
public void setProductCategoryMiddle(String productCategoryMiddle) |
|
|
|
|
public void setProductCategoryMiddle(String productCategoryMiddle) |
|
|
|
|
{ |
|
|
|
|
this.productCategoryMiddle = productCategoryMiddle; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductCategoryMiddle() |
|
|
|
|
public String getProductCategoryMiddle() |
|
|
|
|
{ |
|
|
|
|
return productCategoryMiddle; |
|
|
|
|
} |
|
|
|
|
public void setProductCategorySmall(String productCategorySmall) |
|
|
|
|
public void setProductCategorySmall(String productCategorySmall) |
|
|
|
|
{ |
|
|
|
|
this.productCategorySmall = productCategorySmall; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductCategorySmall() |
|
|
|
|
public String getProductCategorySmall() |
|
|
|
|
{ |
|
|
|
|
return productCategorySmall; |
|
|
|
|
} |
|
|
|
|
public void setProductCategory(String productCategory) |
|
|
|
|
public void setProductCategory(String productCategory) |
|
|
|
|
{ |
|
|
|
|
this.productCategory = productCategory; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductCategory() |
|
|
|
|
public String getProductCategory() |
|
|
|
|
{ |
|
|
|
|
return productCategory; |
|
|
|
|
} |
|
|
|
|
public void setProductSeries(String productSeries) |
|
|
|
|
{ |
|
|
|
|
this.productSeries = productSeries; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getProductSeries() |
|
|
|
|
{ |
|
|
|
|
return productSeries; |
|
|
|
|
} |
|
|
|
|
public void setBaseModel(String baseModel) |
|
|
|
|
public void setBaseModel(String baseModel) |
|
|
|
|
{ |
|
|
|
|
this.baseModel = baseModel; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getBaseModel() |
|
|
|
|
public String getBaseModel() |
|
|
|
|
{ |
|
|
|
|
return baseModel; |
|
|
|
|
} |
|
|
|
|
public void setFactoryModel(String factoryModel) |
|
|
|
|
public void setFactoryModel(String factoryModel) |
|
|
|
|
{ |
|
|
|
|
this.factoryModel = factoryModel; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getFactoryModel() |
|
|
|
|
public String getFactoryModel() |
|
|
|
|
{ |
|
|
|
|
return factoryModel; |
|
|
|
|
} |
|
|
|
|
public void setCustomerModel(String customerModel) |
|
|
|
|
public void setCustomerModel(String customerModel) |
|
|
|
|
{ |
|
|
|
|
this.customerModel = customerModel; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getCustomerModel() |
|
|
|
|
public String getCustomerModel() |
|
|
|
|
{ |
|
|
|
|
return customerModel; |
|
|
|
|
} |
|
|
|
|
public void setBrandId(Long brandId) |
|
|
|
|
public void setBrandId(Long brandId) |
|
|
|
|
{ |
|
|
|
|
this.brandId = brandId; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getBrandId() |
|
|
|
|
public Long getBrandId() |
|
|
|
|
{ |
|
|
|
|
return brandId; |
|
|
|
|
} |
|
|
|
|
public void setBrandName(String brandName) |
|
|
|
|
public void setBrandName(String brandName) |
|
|
|
|
{ |
|
|
|
|
this.brandName = brandName; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getBrandName() |
|
|
|
|
public String getBrandName() |
|
|
|
|
{ |
|
|
|
|
return brandName; |
|
|
|
|
} |
|
|
|
|
public void setIrDatetime(Date irDatetime) |
|
|
|
|
public void setIrDatetime(Date irDatetime) |
|
|
|
|
{ |
|
|
|
|
this.irDatetime = irDatetime; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Date getIrDatetime() |
|
|
|
|
public Date getIrDatetime() |
|
|
|
|
{ |
|
|
|
|
return irDatetime; |
|
|
|
|
} |
|
|
|
|
public void setDrDatetime(Date drDatetime) |
|
|
|
|
public void setDrDatetime(Date drDatetime) |
|
|
|
|
{ |
|
|
|
|
this.drDatetime = drDatetime; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Date getDrDatetime() |
|
|
|
|
public Date getDrDatetime() |
|
|
|
|
{ |
|
|
|
|
return drDatetime; |
|
|
|
|
} |
|
|
|
|
public void setPackWayCode(String packWayCode) |
|
|
|
|
public void setPackWayCode(String packWayCode) |
|
|
|
|
{ |
|
|
|
|
this.packWayCode = packWayCode; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getPackWayCode() |
|
|
|
|
public String getPackWayCode() |
|
|
|
|
{ |
|
|
|
|
return packWayCode; |
|
|
|
|
} |
|
|
|
|
public void setProductNetWeight(BigDecimal productNetWeight) |
|
|
|
|
public void setProductNetWeight(BigDecimal productNetWeight) |
|
|
|
|
{ |
|
|
|
|
this.productNetWeight = productNetWeight; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BigDecimal getProductNetWeight() |
|
|
|
|
public BigDecimal getProductNetWeight() |
|
|
|
|
{ |
|
|
|
|
return productNetWeight; |
|
|
|
|
} |
|
|
|
|
public void setProductLength(BigDecimal productLength) |
|
|
|
|
public void setProductLength(BigDecimal productLength) |
|
|
|
|
{ |
|
|
|
|
this.productLength = productLength; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BigDecimal getProductLength() |
|
|
|
|
public BigDecimal getProductLength() |
|
|
|
|
{ |
|
|
|
|
return productLength; |
|
|
|
|
} |
|
|
|
|
public void setProductWidth(BigDecimal productWidth) |
|
|
|
|
public void setProductWidth(BigDecimal productWidth) |
|
|
|
|
{ |
|
|
|
|
this.productWidth = productWidth; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BigDecimal getProductWidth() |
|
|
|
|
public BigDecimal getProductWidth() |
|
|
|
|
{ |
|
|
|
|
return productWidth; |
|
|
|
|
} |
|
|
|
|
public void setProductHeight(BigDecimal productHeight) |
|
|
|
|
public void setProductHeight(BigDecimal productHeight) |
|
|
|
|
{ |
|
|
|
|
this.productHeight = productHeight; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public BigDecimal getProductHeight() |
|
|
|
|
public BigDecimal getProductHeight() |
|
|
|
|
{ |
|
|
|
|
return productHeight; |
|
|
|
|
} |
|
|
|
|
public void setLoadingQuantity20gp(Long loadingQuantity20gp) |
|
|
|
|
{ |
|
|
|
|
this.loadingQuantity20gp = loadingQuantity20gp; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getLoadingQuantity20gp() |
|
|
|
|
{ |
|
|
|
|
return loadingQuantity20gp; |
|
|
|
|
} |
|
|
|
|
public void setLoadingQuantity40gp(Long loadingQuantity40gp) |
|
|
|
|
{ |
|
|
|
|
this.loadingQuantity40gp = loadingQuantity40gp; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getLoadingQuantity40gp() |
|
|
|
|
{ |
|
|
|
|
return loadingQuantity40gp; |
|
|
|
|
} |
|
|
|
|
public void setLoadingQuantity40hq(Long loadingQuantity40hq) |
|
|
|
|
{ |
|
|
|
|
this.loadingQuantity40hq = loadingQuantity40hq; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getLoadingQuantity40hq() |
|
|
|
|
{ |
|
|
|
|
return loadingQuantity40hq; |
|
|
|
|
} |
|
|
|
|
public void setMinOrderQuantity(Long minOrderQuantity) |
|
|
|
|
public void setMinOrderQuantity(Long minOrderQuantity) |
|
|
|
|
{ |
|
|
|
|
this.minOrderQuantity = minOrderQuantity; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public Long getMinOrderQuantity() |
|
|
|
|
public Long getMinOrderQuantity() |
|
|
|
|
{ |
|
|
|
|
return minOrderQuantity; |
|
|
|
|
} |
|
|
|
|
public void setOtherRequirement(String otherRequirement) |
|
|
|
|
public void setOtherRequirement(String otherRequirement) |
|
|
|
|
{ |
|
|
|
|
this.otherRequirement = otherRequirement; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getOtherRequirement() |
|
|
|
|
public String getOtherRequirement() |
|
|
|
|
{ |
|
|
|
|
return otherRequirement; |
|
|
|
|
} |
|
|
|
|
public void setSTATUS(String STATUS) |
|
|
|
|
public void setSTATUS(String STATUS) |
|
|
|
|
{ |
|
|
|
|
this.STATUS = STATUS; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getSTATUS() |
|
|
|
|
public String getSTATUS() |
|
|
|
|
{ |
|
|
|
|
return STATUS; |
|
|
|
|
} |
|
|
|
|
public void setApproveStatus(String approveStatus) |
|
|
|
|
public void setApproveStatus(String approveStatus) |
|
|
|
|
{ |
|
|
|
|
this.approveStatus = approveStatus; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getApproveStatus() |
|
|
|
|
public String getApproveStatus() |
|
|
|
|
{ |
|
|
|
|
return approveStatus; |
|
|
|
|
} |
|
|
|
|
public void setDelFlag(String delFlag) |
|
|
|
|
public void setDelFlag(String delFlag) |
|
|
|
|
{ |
|
|
|
|
this.delFlag = delFlag; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public String getDelFlag() |
|
|
|
|
public String getDelFlag() |
|
|
|
|
{ |
|
|
|
|
return delFlag; |
|
|
|
|
} |
|
|
|
@ -442,40 +373,35 @@ public class DhcProduct extends BaseEntity
@@ -442,40 +373,35 @@ public class DhcProduct extends BaseEntity
|
|
|
|
|
@Override |
|
|
|
|
public String toString() { |
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) |
|
|
|
|
.append("productId", getProductId()) |
|
|
|
|
.append("productLine", getProductLine()) |
|
|
|
|
.append("productLineName", getProductLineName()) |
|
|
|
|
.append("projectNum", getProjectNum()) |
|
|
|
|
.append("internalModel", getInternalModel()) |
|
|
|
|
.append("productCategoryLarge", getProductCategoryLarge()) |
|
|
|
|
.append("productCategoryMiddle", getProductCategoryMiddle()) |
|
|
|
|
.append("productCategorySmall", getProductCategorySmall()) |
|
|
|
|
.append("productCategory", getProductCategory()) |
|
|
|
|
.append("productSeries", getProductSeries()) |
|
|
|
|
.append("baseModel", getBaseModel()) |
|
|
|
|
.append("factoryModel", getFactoryModel()) |
|
|
|
|
.append("customerModel", getCustomerModel()) |
|
|
|
|
.append("brandId", getBrandId()) |
|
|
|
|
.append("brandName", getBrandName()) |
|
|
|
|
.append("irDatetime", getIrDatetime()) |
|
|
|
|
.append("drDatetime", getDrDatetime()) |
|
|
|
|
.append("packWayCode", getPackWayCode()) |
|
|
|
|
.append("productNetWeight", getProductNetWeight()) |
|
|
|
|
.append("productLength", getProductLength()) |
|
|
|
|
.append("productWidth", getProductWidth()) |
|
|
|
|
.append("productHeight", getProductHeight()) |
|
|
|
|
.append("loadingQuantity20gp", getLoadingQuantity20gp()) |
|
|
|
|
.append("loadingQuantity40gp", getLoadingQuantity40gp()) |
|
|
|
|
.append("loadingQuantity40hq", getLoadingQuantity40hq()) |
|
|
|
|
.append("minOrderQuantity", getMinOrderQuantity()) |
|
|
|
|
.append("otherRequirement", getOtherRequirement()) |
|
|
|
|
.append("STATUS", getSTATUS()) |
|
|
|
|
.append("approveStatus", getApproveStatus()) |
|
|
|
|
.append("delFlag", getDelFlag()) |
|
|
|
|
.append("createBy", getCreateBy()) |
|
|
|
|
.append("createTime", getCreateTime()) |
|
|
|
|
.append("updateBy", getUpdateBy()) |
|
|
|
|
.append("updateTime", getUpdateTime()) |
|
|
|
|
.toString(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.append("productId", getProductId()) |
|
|
|
|
.append("productLine", getProductLine()) |
|
|
|
|
.append("productLineName", getProductLineName()) |
|
|
|
|
.append("internalModel", getInternalModel()) |
|
|
|
|
.append("productCategoryLarge", getProductCategoryLarge()) |
|
|
|
|
.append("productCategoryMiddle", getProductCategoryMiddle()) |
|
|
|
|
.append("productCategorySmall", getProductCategorySmall()) |
|
|
|
|
.append("productCategory", getProductCategory()) |
|
|
|
|
.append("baseModel", getBaseModel()) |
|
|
|
|
.append("factoryModel", getFactoryModel()) |
|
|
|
|
.append("customerModel", getCustomerModel()) |
|
|
|
|
.append("brandId", getBrandId()) |
|
|
|
|
.append("brandName", getBrandName()) |
|
|
|
|
.append("irDatetime", getIrDatetime()) |
|
|
|
|
.append("drDatetime", getDrDatetime()) |
|
|
|
|
.append("packWayCode", getPackWayCode()) |
|
|
|
|
.append("productNetWeight", getProductNetWeight()) |
|
|
|
|
.append("productLength", getProductLength()) |
|
|
|
|
.append("productWidth", getProductWidth()) |
|
|
|
|
.append("productHeight", getProductHeight()) |
|
|
|
|
.append("minOrderQuantity", getMinOrderQuantity()) |
|
|
|
|
.append("otherRequirement", getOtherRequirement()) |
|
|
|
|
.append("STATUS", getSTATUS()) |
|
|
|
|
.append("approveStatus", getApproveStatus()) |
|
|
|
|
.append("delFlag", getDelFlag()) |
|
|
|
|
.append("createBy", getCreateBy()) |
|
|
|
|
.append("createTime", getCreateTime()) |
|
|
|
|
.append("updateBy", getUpdateBy()) |
|
|
|
|
.append("updateTime", getUpdateTime()) |
|
|
|
|
.toString(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|