|
|
|
@ -0,0 +1,687 @@
|
|
|
|
|
package com.op.system.api.domain.mes;
|
|
|
|
|
|
|
|
|
|
import com.op.common.core.annotation.Excel;
|
|
|
|
|
import com.op.common.core.web.domain.BaseEntity;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 物料管理 base_product
|
|
|
|
|
*
|
|
|
|
|
* @author JGY
|
|
|
|
|
* @date 2023-07-18
|
|
|
|
|
*/
|
|
|
|
|
public class BaseProductDTO extends BaseEntity {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** 主键ID */
|
|
|
|
|
private String productId;
|
|
|
|
|
|
|
|
|
|
/** 物料编码 */
|
|
|
|
|
@Excel(name = "物料编码")
|
|
|
|
|
private String productCode;
|
|
|
|
|
|
|
|
|
|
/** 物料名称 */
|
|
|
|
|
@Excel(name = "物料名称")
|
|
|
|
|
private String productDescZh;
|
|
|
|
|
|
|
|
|
|
/** 物料名称 */
|
|
|
|
|
@Excel(name = "物料型号")
|
|
|
|
|
private String productModel;
|
|
|
|
|
|
|
|
|
|
/** 英文描述 */
|
|
|
|
|
@Excel(name = "英文描述")
|
|
|
|
|
private String productDescEn;
|
|
|
|
|
|
|
|
|
|
/** 序列号规则代码 */
|
|
|
|
|
@Excel(name = "序列号规则代码")
|
|
|
|
|
private String ruleCode;
|
|
|
|
|
|
|
|
|
|
/** 旧物料号 */
|
|
|
|
|
@Excel(name = "旧物料号")
|
|
|
|
|
private String oldProductCode;
|
|
|
|
|
|
|
|
|
|
/** 散件物料号 */
|
|
|
|
|
@Excel(name = "散件物料号")
|
|
|
|
|
private String partsProductCode;
|
|
|
|
|
|
|
|
|
|
/** 69码 */
|
|
|
|
|
@Excel(name = "69码")
|
|
|
|
|
private String skuBarcode;
|
|
|
|
|
|
|
|
|
|
/** 长 */
|
|
|
|
|
@Excel(name = "长")
|
|
|
|
|
private BigDecimal length;
|
|
|
|
|
|
|
|
|
|
/** 宽 */
|
|
|
|
|
@Excel(name = "宽")
|
|
|
|
|
private BigDecimal width;
|
|
|
|
|
|
|
|
|
|
/** 高 */
|
|
|
|
|
@Excel(name = "高")
|
|
|
|
|
private BigDecimal height;
|
|
|
|
|
|
|
|
|
|
/** 毛重 */
|
|
|
|
|
@Excel(name = "毛重")
|
|
|
|
|
private BigDecimal grossWeight;
|
|
|
|
|
|
|
|
|
|
/** 净重 */
|
|
|
|
|
@Excel(name = "净重")
|
|
|
|
|
private BigDecimal netWeight;
|
|
|
|
|
|
|
|
|
|
/** 皮重 */
|
|
|
|
|
@Excel(name = "皮重")
|
|
|
|
|
private BigDecimal tareWeight;
|
|
|
|
|
|
|
|
|
|
/** 体积 */
|
|
|
|
|
@Excel(name = "体积")
|
|
|
|
|
private BigDecimal volume;
|
|
|
|
|
|
|
|
|
|
/** 单价 */
|
|
|
|
|
@Excel(name = "单价")
|
|
|
|
|
private BigDecimal unitPrice;
|
|
|
|
|
|
|
|
|
|
/** 物料组 */
|
|
|
|
|
@Excel(name = "物料类别组")
|
|
|
|
|
private String productGroup;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private String productGroupName;
|
|
|
|
|
|
|
|
|
|
/** 用户自定义1 */
|
|
|
|
|
@Excel(name = "用户自定义1")
|
|
|
|
|
private String userDefined1;
|
|
|
|
|
|
|
|
|
|
/** 用户自定义2 */
|
|
|
|
|
@Excel(name = "用户自定义2")
|
|
|
|
|
private String userDefined2;
|
|
|
|
|
|
|
|
|
|
/** 用户自定义3 */
|
|
|
|
|
@Excel(name = "用户自定义3")
|
|
|
|
|
private String userDefined3;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private String userDefined4;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private String userDefined5;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private String userDefined6;
|
|
|
|
|
|
|
|
|
|
/** 工厂编码 */
|
|
|
|
|
@Excel(name = "工厂编码")
|
|
|
|
|
private String factoryCode;
|
|
|
|
|
|
|
|
|
|
/** 激活标记 */
|
|
|
|
|
@Excel(name = "激活标记")
|
|
|
|
|
private String activeFlag;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private String syncFlag;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private String primaryUom;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
private String delFlag;
|
|
|
|
|
|
|
|
|
|
/** 订单单位 */
|
|
|
|
|
@Excel(name = "订单单位")
|
|
|
|
|
private String bstme;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private BigDecimal basicOrder;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private BigDecimal convOrder;
|
|
|
|
|
|
|
|
|
|
/** 发货单位 */
|
|
|
|
|
@Excel(name = "发货单位")
|
|
|
|
|
private String ausme;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private BigDecimal basicIssue;
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
|
|
|
private BigDecimal convIssue;
|
|
|
|
|
|
|
|
|
|
/** 是否补料(0否 */
|
|
|
|
|
@Excel(name = "是否补料", readConverterExp = "是否补料(0否")
|
|
|
|
|
private String appendFlag;
|
|
|
|
|
|
|
|
|
|
/** 补料比例 */
|
|
|
|
|
@Excel(name = "补料比例")
|
|
|
|
|
private String appendPercent;
|
|
|
|
|
|
|
|
|
|
/** 物料类型 */
|
|
|
|
|
@Excel(name = "物料类型")
|
|
|
|
|
private String mtart;
|
|
|
|
|
|
|
|
|
|
/** 品类 */
|
|
|
|
|
@Excel(name = "品类")
|
|
|
|
|
private String category;
|
|
|
|
|
|
|
|
|
|
/** 每PC单圈 */
|
|
|
|
|
@Excel(name = "每PC单圈")
|
|
|
|
|
private String pc;
|
|
|
|
|
|
|
|
|
|
/** 标准效率 */
|
|
|
|
|
@Excel(name = "标准效率")
|
|
|
|
|
private BigDecimal iei;
|
|
|
|
|
|
|
|
|
|
/** 标准用人 */
|
|
|
|
|
@Excel(name = "标准用人")
|
|
|
|
|
private BigDecimal manStandar;
|
|
|
|
|
|
|
|
|
|
/** 喷药方式 */
|
|
|
|
|
@Excel(name = "喷药方式")
|
|
|
|
|
private String sprayWay;
|
|
|
|
|
|
|
|
|
|
/** 白坯直径 */
|
|
|
|
|
@Excel(name = "白坯直径")
|
|
|
|
|
private BigDecimal blankDiameter;
|
|
|
|
|
|
|
|
|
|
/** 白坯物料号 */
|
|
|
|
|
@Excel(name = "白坯物料号")
|
|
|
|
|
private String blankNo;
|
|
|
|
|
|
|
|
|
|
/** 标准喷药量(KG/PC) */
|
|
|
|
|
@Excel(name = "标准喷药量", readConverterExp = "K=G/PC")
|
|
|
|
|
private BigDecimal sprayVolume;
|
|
|
|
|
|
|
|
|
|
/** 药液料号 */
|
|
|
|
|
@Excel(name = "药液料号")
|
|
|
|
|
private String liquidNo;
|
|
|
|
|
|
|
|
|
|
/** 标准内膜用量(KG/PC) */
|
|
|
|
|
@Excel(name = "标准内膜用量", readConverterExp = "K=G/PC")
|
|
|
|
|
private BigDecimal endometrialDosage;
|
|
|
|
|
|
|
|
|
|
/** 标准外模用量(KG/PC) */
|
|
|
|
|
@Excel(name = "标准外模用量(KG/PC)")
|
|
|
|
|
private BigDecimal outerFilmDosage;
|
|
|
|
|
|
|
|
|
|
/** 支架 */
|
|
|
|
|
@Excel(name = "支架")
|
|
|
|
|
private Long support;
|
|
|
|
|
|
|
|
|
|
/** 支架物料号 */
|
|
|
|
|
@Excel(name = "支架物料号")
|
|
|
|
|
private String supportNo;
|
|
|
|
|
|
|
|
|
|
/** 吸塑 */
|
|
|
|
|
@Excel(name = "吸塑")
|
|
|
|
|
private Long pvc;
|
|
|
|
|
|
|
|
|
|
/** 支架盘 */
|
|
|
|
|
@Excel(name = "支架盘")
|
|
|
|
|
private Long supportPlate;
|
|
|
|
|
|
|
|
|
|
/** 其它 */
|
|
|
|
|
@Excel(name = "其它")
|
|
|
|
|
private String other;
|
|
|
|
|
|
|
|
|
|
public void setCategory(String category) {
|
|
|
|
|
this.category = category;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCategory() {
|
|
|
|
|
return category;
|
|
|
|
|
}
|
|
|
|
|
public void setPc(String pc) {
|
|
|
|
|
this.pc = pc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPc() {
|
|
|
|
|
return pc;
|
|
|
|
|
}
|
|
|
|
|
public void setIei(BigDecimal iei) {
|
|
|
|
|
this.iei = iei;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getIei() {
|
|
|
|
|
return iei;
|
|
|
|
|
}
|
|
|
|
|
public void setManStandar(BigDecimal manStandar) {
|
|
|
|
|
this.manStandar = manStandar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getManStandar() {
|
|
|
|
|
return manStandar;
|
|
|
|
|
}
|
|
|
|
|
public void setSprayWay(String sprayWay) {
|
|
|
|
|
this.sprayWay = sprayWay;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSprayWay() {
|
|
|
|
|
return sprayWay;
|
|
|
|
|
}
|
|
|
|
|
public void setBlankDiameter(BigDecimal blankDiameter) {
|
|
|
|
|
this.blankDiameter = blankDiameter;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getBlankDiameter() {
|
|
|
|
|
return blankDiameter;
|
|
|
|
|
}
|
|
|
|
|
public void setBlankNo(String blankNo) {
|
|
|
|
|
this.blankNo = blankNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getBlankNo() {
|
|
|
|
|
return blankNo;
|
|
|
|
|
}
|
|
|
|
|
public void setSprayVolume(BigDecimal sprayVolume) {
|
|
|
|
|
this.sprayVolume = sprayVolume;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getSprayVolume() {
|
|
|
|
|
return sprayVolume;
|
|
|
|
|
}
|
|
|
|
|
public void setLiquidNo(String liquidNo) {
|
|
|
|
|
this.liquidNo = liquidNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getLiquidNo() {
|
|
|
|
|
return liquidNo;
|
|
|
|
|
}
|
|
|
|
|
public void setEndometrialDosage(BigDecimal endometrialDosage) {
|
|
|
|
|
this.endometrialDosage = endometrialDosage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getEndometrialDosage() {
|
|
|
|
|
return endometrialDosage;
|
|
|
|
|
}
|
|
|
|
|
public void setOuterFilmDosage(BigDecimal outerFilmDosage) {
|
|
|
|
|
this.outerFilmDosage = outerFilmDosage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getOuterFilmDosage() {
|
|
|
|
|
return outerFilmDosage;
|
|
|
|
|
}
|
|
|
|
|
public void setSupport(Long support) {
|
|
|
|
|
this.support = support;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getSupport() {
|
|
|
|
|
return support;
|
|
|
|
|
}
|
|
|
|
|
public void setSupportNo(String supportNo) {
|
|
|
|
|
this.supportNo = supportNo;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSupportNo() {
|
|
|
|
|
return supportNo;
|
|
|
|
|
}
|
|
|
|
|
public void setPvc(Long pvc) {
|
|
|
|
|
this.pvc = pvc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getPvc() {
|
|
|
|
|
return pvc;
|
|
|
|
|
}
|
|
|
|
|
public void setSupportPlate(Long supportPlate) {
|
|
|
|
|
this.supportPlate = supportPlate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getSupportPlate() {
|
|
|
|
|
return supportPlate;
|
|
|
|
|
}
|
|
|
|
|
public void setOther(String other) {
|
|
|
|
|
this.other = other;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getOther() {
|
|
|
|
|
return other;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setProductId(String productId) {
|
|
|
|
|
this.productId = productId;
|
|
|
|
|
}
|
|
|
|
|
public String getProductId() {
|
|
|
|
|
return productId;}
|
|
|
|
|
|
|
|
|
|
public void setProductCode(String productCode) {
|
|
|
|
|
this.productCode = productCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductCode() {
|
|
|
|
|
return productCode;
|
|
|
|
|
}
|
|
|
|
|
public void setProductDescZh(String productDescZh) {
|
|
|
|
|
this.productDescZh = productDescZh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductDescZh() {
|
|
|
|
|
return productDescZh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setProductModel(String productModel) {
|
|
|
|
|
this.productModel = productModel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductModel() {
|
|
|
|
|
return productModel;
|
|
|
|
|
}
|
|
|
|
|
public void setProductDescEn(String productDescEn) {
|
|
|
|
|
this.productDescEn = productDescEn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductDescEn() {
|
|
|
|
|
return productDescEn;
|
|
|
|
|
}
|
|
|
|
|
public void setRuleCode(String ruleCode) {
|
|
|
|
|
this.ruleCode = ruleCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRuleCode() {
|
|
|
|
|
return ruleCode;
|
|
|
|
|
}
|
|
|
|
|
public void setOldProductCode(String oldProductCode) {
|
|
|
|
|
this.oldProductCode = oldProductCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getOldProductCode() {
|
|
|
|
|
return oldProductCode;
|
|
|
|
|
}
|
|
|
|
|
public void setPartsProductCode(String partsProductCode) {
|
|
|
|
|
this.partsProductCode = partsProductCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPartsProductCode() {
|
|
|
|
|
return partsProductCode;
|
|
|
|
|
}
|
|
|
|
|
public void setSkuBarcode(String skuBarcode) {
|
|
|
|
|
this.skuBarcode = skuBarcode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSkuBarcode() {
|
|
|
|
|
return skuBarcode;
|
|
|
|
|
}
|
|
|
|
|
public void setLength(BigDecimal length) {
|
|
|
|
|
this.length = length;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getLength() {
|
|
|
|
|
return length;
|
|
|
|
|
}
|
|
|
|
|
public void setWidth(BigDecimal width) {
|
|
|
|
|
this.width = width;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getWidth() {
|
|
|
|
|
return width;
|
|
|
|
|
}
|
|
|
|
|
public void setHeight(BigDecimal height) {
|
|
|
|
|
this.height = height;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getHeight() {
|
|
|
|
|
return height;
|
|
|
|
|
}
|
|
|
|
|
public void setGrossWeight(BigDecimal grossWeight) {
|
|
|
|
|
this.grossWeight = grossWeight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getGrossWeight() {
|
|
|
|
|
return grossWeight;
|
|
|
|
|
}
|
|
|
|
|
public void setNetWeight(BigDecimal netWeight) {
|
|
|
|
|
this.netWeight = netWeight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getNetWeight() {
|
|
|
|
|
return netWeight;
|
|
|
|
|
}
|
|
|
|
|
public void setTareWeight(BigDecimal tareWeight) {
|
|
|
|
|
this.tareWeight = tareWeight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getTareWeight() {
|
|
|
|
|
return tareWeight;
|
|
|
|
|
}
|
|
|
|
|
public void setVolume(BigDecimal volume) {
|
|
|
|
|
this.volume = volume;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getVolume() {
|
|
|
|
|
return volume;
|
|
|
|
|
}
|
|
|
|
|
public void setUnitPrice(BigDecimal unitPrice) {
|
|
|
|
|
this.unitPrice = unitPrice;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getUnitPrice() {
|
|
|
|
|
return unitPrice;
|
|
|
|
|
}
|
|
|
|
|
public void setProductGroup(String productGroup) {
|
|
|
|
|
this.productGroup = productGroup;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductGroup() {
|
|
|
|
|
return productGroup;
|
|
|
|
|
}
|
|
|
|
|
public void setProductGroupName(String productGroupName) {
|
|
|
|
|
this.productGroupName = productGroupName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getProductGroupName() {
|
|
|
|
|
return productGroupName;
|
|
|
|
|
}
|
|
|
|
|
public void setUserDefined1(String userDefined1) {
|
|
|
|
|
this.userDefined1 = userDefined1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUserDefined1() {
|
|
|
|
|
return userDefined1;
|
|
|
|
|
}
|
|
|
|
|
public void setUserDefined2(String userDefined2) {
|
|
|
|
|
this.userDefined2 = userDefined2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUserDefined2() {
|
|
|
|
|
return userDefined2;
|
|
|
|
|
}
|
|
|
|
|
public void setUserDefined3(String userDefined3) {
|
|
|
|
|
this.userDefined3 = userDefined3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUserDefined3() {
|
|
|
|
|
return userDefined3;
|
|
|
|
|
}
|
|
|
|
|
public void setUserDefined4(String userDefined4) {
|
|
|
|
|
this.userDefined4 = userDefined4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUserDefined4() {
|
|
|
|
|
return userDefined4;
|
|
|
|
|
}
|
|
|
|
|
public void setUserDefined5(String userDefined5) {
|
|
|
|
|
this.userDefined5 = userDefined5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUserDefined5() {
|
|
|
|
|
return userDefined5;
|
|
|
|
|
}
|
|
|
|
|
public void setUserDefined6(String userDefined6) {
|
|
|
|
|
this.userDefined6 = userDefined6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getUserDefined6() {
|
|
|
|
|
return userDefined6;
|
|
|
|
|
}
|
|
|
|
|
public void setFactoryCode(String factoryCode) {
|
|
|
|
|
this.factoryCode = factoryCode;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getFactoryCode() {
|
|
|
|
|
return factoryCode;
|
|
|
|
|
}
|
|
|
|
|
public void setActiveFlag(String activeFlag) {
|
|
|
|
|
this.activeFlag = activeFlag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getActiveFlag() {
|
|
|
|
|
return activeFlag;
|
|
|
|
|
}
|
|
|
|
|
public void setSyncFlag(String syncFlag) {
|
|
|
|
|
this.syncFlag = syncFlag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getSyncFlag() {
|
|
|
|
|
return syncFlag;
|
|
|
|
|
}
|
|
|
|
|
public void setPrimaryUom(String primaryUom) {
|
|
|
|
|
this.primaryUom = primaryUom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPrimaryUom() {
|
|
|
|
|
return primaryUom;
|
|
|
|
|
}
|
|
|
|
|
public void setDelFlag(String delFlag) {
|
|
|
|
|
this.delFlag = delFlag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDelFlag() {
|
|
|
|
|
return delFlag;
|
|
|
|
|
}
|
|
|
|
|
public void setBstme(String bstme) {
|
|
|
|
|
this.bstme = bstme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getBstme() {
|
|
|
|
|
return bstme;
|
|
|
|
|
}
|
|
|
|
|
public void setBasicOrder(BigDecimal basicOrder) {
|
|
|
|
|
this.basicOrder = basicOrder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getBasicOrder() {
|
|
|
|
|
return basicOrder;
|
|
|
|
|
}
|
|
|
|
|
public void setConvOrder(BigDecimal convOrder) {
|
|
|
|
|
this.convOrder = convOrder;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getConvOrder() {
|
|
|
|
|
return convOrder;
|
|
|
|
|
}
|
|
|
|
|
public void setAusme(String ausme) {
|
|
|
|
|
this.ausme = ausme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAusme() {
|
|
|
|
|
return ausme;
|
|
|
|
|
}
|
|
|
|
|
public void setBasicIssue(BigDecimal basicIssue) {
|
|
|
|
|
this.basicIssue = basicIssue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getBasicIssue() {
|
|
|
|
|
return basicIssue;
|
|
|
|
|
}
|
|
|
|
|
public void setConvIssue(BigDecimal convIssue) {
|
|
|
|
|
this.convIssue = convIssue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getConvIssue() {
|
|
|
|
|
return convIssue;
|
|
|
|
|
}
|
|
|
|
|
public void setAppendFlag(String appendFlag) {
|
|
|
|
|
this.appendFlag = appendFlag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAppendFlag() {
|
|
|
|
|
return appendFlag;
|
|
|
|
|
}
|
|
|
|
|
public void setAppendPercent(String appendPercent) {
|
|
|
|
|
this.appendPercent = appendPercent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getAppendPercent() {
|
|
|
|
|
return appendPercent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setMtart(String mtart) {
|
|
|
|
|
this.mtart = mtart;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getMtart() {
|
|
|
|
|
return mtart;
|
|
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
.append("productId", getProductId())
|
|
|
|
|
.append("productCode", getProductCode())
|
|
|
|
|
.append("productDescZh", getProductDescZh())
|
|
|
|
|
.append("productDescEn", getProductDescEn())
|
|
|
|
|
.append("ruleCode", getRuleCode())
|
|
|
|
|
.append("oldProductCode", getOldProductCode())
|
|
|
|
|
.append("partsProductCode", getPartsProductCode())
|
|
|
|
|
.append("skuBarcode", getSkuBarcode())
|
|
|
|
|
.append("length", getLength())
|
|
|
|
|
.append("width", getWidth())
|
|
|
|
|
.append("height", getHeight())
|
|
|
|
|
.append("grossWeight", getGrossWeight())
|
|
|
|
|
.append("netWeight", getNetWeight())
|
|
|
|
|
.append("tareWeight", getTareWeight())
|
|
|
|
|
.append("volume", getVolume())
|
|
|
|
|
.append("unitPrice", getUnitPrice())
|
|
|
|
|
.append("productGroup", getProductGroup())
|
|
|
|
|
.append("productGroupName", getProductGroupName())
|
|
|
|
|
.append("userDefined1", getUserDefined1())
|
|
|
|
|
.append("userDefined2", getUserDefined2())
|
|
|
|
|
.append("userDefined3", getUserDefined3())
|
|
|
|
|
.append("userDefined4", getUserDefined4())
|
|
|
|
|
.append("userDefined5", getUserDefined5())
|
|
|
|
|
.append("userDefined6", getUserDefined6())
|
|
|
|
|
.append("createBy", getCreateBy())
|
|
|
|
|
.append("createTime", getCreateTime())
|
|
|
|
|
.append("updateBy", getUpdateBy())
|
|
|
|
|
.append("updateTime", getUpdateTime())
|
|
|
|
|
.append("factoryCode", getFactoryCode())
|
|
|
|
|
.append("activeFlag", getActiveFlag())
|
|
|
|
|
.append("syncFlag", getSyncFlag())
|
|
|
|
|
.append("primaryUom", getPrimaryUom())
|
|
|
|
|
.append("delFlag", getDelFlag())
|
|
|
|
|
.append("bstme", getBstme())
|
|
|
|
|
.append("basicOrder", getBasicOrder())
|
|
|
|
|
.append("convOrder", getConvOrder())
|
|
|
|
|
.append("ausme", getAusme())
|
|
|
|
|
.append("basicIssue", getBasicIssue())
|
|
|
|
|
.append("convIssue", getConvIssue())
|
|
|
|
|
.append("appendFlag", getAppendFlag())
|
|
|
|
|
.append("appendPercent", getAppendPercent())
|
|
|
|
|
.append("mtart", getMtart())
|
|
|
|
|
.append("category", getCategory())
|
|
|
|
|
.append("pc", getPc())
|
|
|
|
|
.append("iei", getIei())
|
|
|
|
|
.append("manStandar", getManStandar())
|
|
|
|
|
.append("sprayWay", getSprayWay())
|
|
|
|
|
.append("blankDiameter", getBlankDiameter())
|
|
|
|
|
.append("blankNo", getBlankNo())
|
|
|
|
|
.append("sprayVolume", getSprayVolume())
|
|
|
|
|
.append("liquidNo", getLiquidNo())
|
|
|
|
|
.append("endometrialDosage", getEndometrialDosage())
|
|
|
|
|
.append("outerFilmDosage", getOuterFilmDosage())
|
|
|
|
|
.append("support", getSupport())
|
|
|
|
|
.append("supportNo", getSupportNo())
|
|
|
|
|
.append("pvc", getPvc())
|
|
|
|
|
.append("supportPlate", getSupportPlate())
|
|
|
|
|
.append("other", getOther())
|
|
|
|
|
.toString();
|
|
|
|
|
}
|
|
|
|
|
}
|