feat(wms): 添加钢卷集合字段支持

- 在 WmsDeliveryPlan 实体类中新增 coil 字段
- 在 WmsDeliveryPlanBo 业务对象中新增 coil 字段
- 在 WmsDeliveryPlanVo 视图对象中新增 coil 字段
- 更新 MyBatis 映射文件以支持 coil 字段的数据库映射
This commit is contained in:
2025-12-08 11:38:32 +08:00
parent 15c2d5250a
commit e778923f9b
4 changed files with 10 additions and 0 deletions

View File

@@ -48,4 +48,7 @@ public class WmsDeliveryPlan extends BaseEntity {
@TableLogic
private Integer delFlag;
// 钢卷集合
private String coil;
}

View File

@@ -43,5 +43,8 @@ public class WmsDeliveryPlanBo extends BaseEntity {
*/
private String remark;
// 钢卷集合
private String coil;
}

View File

@@ -71,4 +71,7 @@ public class WmsDeliveryPlanVo extends BaseEntity {
*/
private String updateByName;
// 钢卷集合
private String coil;
}

View File

@@ -9,6 +9,7 @@
<result property="planName" column="plan_name"/>
<result property="planDate" column="plan_date"/>
<result property="planType" column="plan_type"/>
<result property="coil" column="coil"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
<result property="createTime" column="create_time"/>