feat(domain): WmsOrderDetail增加产品规范组 ID 字段

- 在 WmsOrderDetail、WmsOrderDetailBo 和 WmsOrderDetailVo 中添加 groupId 字段
- 更新 WmsOrderDetailMapper.xml,添加 group_id 列的映射
This commit is contained in:
JR
2025-08-25 17:27:35 +08:00
parent f781bec867
commit 781c7f8bac
4 changed files with 14 additions and 2 deletions

View File

@@ -61,4 +61,9 @@ public class WmsOrderDetail extends BaseEntity {
*/
private BigDecimal noTaxPrice;
/**
* 产品规范组ID
*/
private Long groupId;
}

View File

@@ -64,5 +64,8 @@ public class WmsOrderDetailBo extends BaseEntity {
*/
private BigDecimal noTaxPrice;
/**
* 产品规范组ID
*/
private Long groupId;
}

View File

@@ -77,5 +77,8 @@ public class WmsOrderDetailVo {
@ExcelProperty(value = "无税单价")
private BigDecimal noTaxPrice;
/**
* 产品规范组ID
*/
private Long groupId;
}

View File

@@ -18,6 +18,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateBy" column="update_by"/>
<result property="taxPrice" column="tax_price"/>
<result property="noTaxPrice" column="no_tax_price"/>
<result property="groupId" column="group_id"/>
</resultMap>
<select id="selectVoListByOrderId" resultType="com.klp.domain.vo.WmsOrderDetailVo">