3
0
Fork 0

## 商品管理添加上传盒数字段;

This commit is contained in:
cabbage 2025-08-05 11:46:41 +08:00
parent 47281e4d6a
commit e6cc920354
4 changed files with 9 additions and 3 deletions

View File

@ -412,6 +412,6 @@ public class WaresParams implements Serializable {
/** /**
* 商品上传盒数 * 商品上传盒数
*/ */
private BigDecimal boxNum; private Integer boxNum;
} }

View File

@ -36,6 +36,7 @@
<result column="PRE_SALE_STATUS" property="preSaleStatus"/> <result column="PRE_SALE_STATUS" property="preSaleStatus"/>
<result column="PK_PRODUCT_BAS" property="pkProductBas"/> <result column="PK_PRODUCT_BAS" property="pkProductBas"/>
<result column="PK_UNIT" property="pkUnit"/> <result column="PK_UNIT" property="pkUnit"/>
<result column="BOX_NUM" property="boxNum"/>
<collection property="waresSpecsList" ofType="com.hzs.common.domain.sale.ext.WaresSpecsExt"> <collection property="waresSpecsList" ofType="com.hzs.common.domain.sale.ext.WaresSpecsExt">
<result column="PK_SPECS_TYPE" property="pkSpecsType"/> <result column="PK_SPECS_TYPE" property="pkSpecsType"/>
<result column="PK_SPECS" property="pkSpecs"/> <result column="PK_SPECS" property="pkSpecs"/>
@ -50,7 +51,7 @@
be.pk_special_currency,bw.wares_code, bw.wares_name, be.pk_special_currency,bw.wares_code, bw.wares_name,
bd.is_gift is_gift, bd.is_gift is_gift,
bd.pk_product,bs.price,bs.achieve,bp.pk_supplier,bp.shipping_channel,bp.product_code, bd.pk_product,bs.price,bs.achieve,bp.pk_supplier,bp.shipping_channel,bp.product_code,
bs.ass_achieve,b.specs_name,b.specs_name_id bs.ass_achieve,b.specs_name,b.specs_name_id, bw.box_num
from bd_wares bw from bd_wares bw
inner join bd_wares_extend be inner join bd_wares_extend be
on bw.pk_id = be.pk_wares on bw.pk_id = be.pk_wares

View File

@ -138,4 +138,9 @@ public class BdWaresDetailExt extends BdWaresDetail {
*/ */
private Integer pkUnit; private Integer pkUnit;
/**
* 商品上传盒数
*/
private Integer boxNum;
} }

View File

@ -226,6 +226,6 @@ public class BdWares extends BaseEntity {
* 商品上传盒数 * 商品上传盒数
*/ */
@TableField("BOX_NUM") @TableField("BOX_NUM")
private BigDecimal boxNum; private Integer boxNum;
} }