feat(wms): 添加发货计划审核功能

- 在 WmsDeliveryPlan 实体中新增 auditStatus、auditBy 和 auditTime 字段
- 在 WmsDeliveryPlanBo 业务对象中同步新增审核相关字段
- 更新 WmsDeliveryPlanMapper.xml 映射文件以支持新字段查询
- 在 WmsDeliveryPlanServiceImpl 查询条件构造器中增加 auditStatus 筛选
- 在 WmsDeliveryPlanVo 视图对象中新增审核字段并配置日期格式化注解
This commit is contained in:
2025-12-08 14:42:28 +08:00
parent 0b792edafd
commit cff1bdc46b
5 changed files with 33 additions and 1 deletions

View File

@@ -10,6 +10,9 @@
<result property="planDate" column="plan_date"/>
<result property="planType" column="plan_type"/>
<result property="coil" column="coil"/>
<result property="auditStatus" column="audit_status"/>
<result property="auditBy" column="audit_by"/>
<result property="auditTime" column="audit_time"/>
<result property="remark" column="remark"/>
<result property="delFlag" column="del_flag"/>
<result property="createTime" column="create_time"/>