feat(domain): WmsOrderDetail增加产品规范组 ID 字段
- 在 WmsOrderDetail、WmsOrderDetailBo 和 WmsOrderDetailVo 中添加 groupId 字段 - 更新 WmsOrderDetailMapper.xml,添加 group_id 列的映射
This commit is contained in:
@@ -61,4 +61,9 @@ public class WmsOrderDetail extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private BigDecimal noTaxPrice;
|
private BigDecimal noTaxPrice;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品规范组ID
|
||||||
|
*/
|
||||||
|
private Long groupId;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,5 +64,8 @@ public class WmsOrderDetailBo extends BaseEntity {
|
|||||||
*/
|
*/
|
||||||
private BigDecimal noTaxPrice;
|
private BigDecimal noTaxPrice;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品规范组ID
|
||||||
|
*/
|
||||||
|
private Long groupId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -77,5 +77,8 @@ public class WmsOrderDetailVo {
|
|||||||
@ExcelProperty(value = "无税单价")
|
@ExcelProperty(value = "无税单价")
|
||||||
private BigDecimal noTaxPrice;
|
private BigDecimal noTaxPrice;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品规范组ID
|
||||||
|
*/
|
||||||
|
private Long groupId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,6 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||||||
<result property="updateBy" column="update_by"/>
|
<result property="updateBy" column="update_by"/>
|
||||||
<result property="taxPrice" column="tax_price"/>
|
<result property="taxPrice" column="tax_price"/>
|
||||||
<result property="noTaxPrice" column="no_tax_price"/>
|
<result property="noTaxPrice" column="no_tax_price"/>
|
||||||
|
<result property="groupId" column="group_id"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
<select id="selectVoListByOrderId" resultType="com.klp.domain.vo.WmsOrderDetailVo">
|
<select id="selectVoListByOrderId" resultType="com.klp.domain.vo.WmsOrderDetailVo">
|
||||||
|
|||||||
Reference in New Issue
Block a user