forked from angelo/java-retail-app
## 商品管理添加上传盒数字段;
This commit is contained in:
parent
0d88669404
commit
a3e141de80
|
@ -412,6 +412,6 @@ public class WaresParams implements Serializable {
|
||||||
/**
|
/**
|
||||||
* 商品上传盒数
|
* 商品上传盒数
|
||||||
*/
|
*/
|
||||||
private BigDecimal boxNum;
|
private Integer boxNum;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -138,4 +138,9 @@ public class BdWaresDetailExt extends BdWaresDetail {
|
||||||
*/
|
*/
|
||||||
private Integer pkUnit;
|
private Integer pkUnit;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 商品上传盒数
|
||||||
|
*/
|
||||||
|
private Integer boxNum;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -226,6 +226,6 @@ public class BdWares extends BaseEntity {
|
||||||
* 商品上传盒数
|
* 商品上传盒数
|
||||||
*/
|
*/
|
||||||
@TableField("BOX_NUM")
|
@TableField("BOX_NUM")
|
||||||
private BigDecimal boxNum;
|
private Integer boxNum;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue