Commit ec63c647 by liuyang

2024-10-09 销售业绩产品类型调整

parent abc0775a
......@@ -79,7 +79,7 @@ public class HPYX006 extends DaoEPBase {
private Integer deleteFlag = 0; /* 是否删除0.否1.是*/
private String productCode = " "; /* 产品编码*/
private String productName = " "; /* 产品名称*/
private Integer productType; /* 产品类型*/
private String productType = " "; /* 产品类型*/
private String productPecu = " "; /* 产品特性*/
private String productGood = " "; /* 产品卖点*/
private BigDecimal productPrice = new BigDecimal(0.00); /* 产品定价*/
......@@ -377,7 +377,7 @@ public class HPYX006 extends DaoEPBase {
* get the productType - 产品类型.
* @return the productType
*/
public Integer getProductType() {
public String getProductType() {
return this.productType;
}
......@@ -386,7 +386,7 @@ public class HPYX006 extends DaoEPBase {
*
* @param productType - 产品类型
*/
public void setProductType(Integer productType) {
public void setProductType(String productType) {
this.productType = productType;
}
/**
......@@ -489,7 +489,7 @@ public class HPYX006 extends DaoEPBase {
setDeleteFlag(NumberUtils.toInteger(StringUtils.toString(map.get(FIELD_DELETE_FLAG)), deleteFlag));
setProductCode(StringUtils.defaultIfEmpty(StringUtils.toString(map.get(FIELD_PRODUCT_CODE)), productCode));
setProductName(StringUtils.defaultIfEmpty(StringUtils.toString(map.get(FIELD_PRODUCT_NAME)), productName));
setProductType(NumberUtils.toInteger(StringUtils.toString(map.get(FIELD_PRODUCT_TYPE)), productType));
setProductType(StringUtils.defaultIfEmpty(StringUtils.toString(map.get(FIELD_PRODUCT_TYPE)), productType));
setProductPecu(StringUtils.defaultIfEmpty(StringUtils.toString(map.get(FIELD_PRODUCT_PECU)), productPecu));
setProductGood(StringUtils.defaultIfEmpty(StringUtils.toString(map.get(FIELD_PRODUCT_GOOD)), productGood));
setProductPrice(NumberUtils.toBigDecimal(StringUtils.toString(map.get(FIELD_PRODUCT_PRICE)), productPrice));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment