feat(WmsProduct): 添加产品类型字段

- 在 WmsProduct 类中添加 type 字段,用于存储产品类型
- 在 WmsProductBo 和 WmsProductVo 中添加相应的 type 属性
- 更新 WmsProductMapper.xml,添加 type 字段的映射
- 在 WmsProductServiceImpl 中添加对 type 字段的查询条件
This commit is contained in:
2025-08-11 14:46:28 +08:00
parent 3c2cc85e27
commit 0283686d11
5 changed files with 12 additions and 1 deletions

View File

@@ -25,6 +25,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="unit" column="unit"/>
<result property="remark" column="remark"/>
<result property="bomId" column="bom_id"/>
<result property="type" column="type"/>
</resultMap>