feat(qc): 新增检查项和检查任务字段支持

- 为 WmsCheckItem 及其相关 BO、VO 类新增目标上下限、标准目标、单位、定性定量字段-为 WmsCheckTask 及其相关 BO、VO 类新增校验目标、工段、工序、机组、检验结果、检验类型字段- 为 WmsCheckTaskItem 及其相关 BO、VO 类新增目标上下限、标准目标、单位、定性定量及实测值字段
- 更新 MyBatis XML 映射文件以支持新增字段的数据库映射
- 在服务实现类中为新增字段添加查询条件支持
This commit is contained in:
2025-10-16 17:53:10 +08:00
parent e59767375f
commit c7f639bbf2
15 changed files with 168 additions and 3 deletions

View File

@@ -7,6 +7,12 @@
<resultMap type="com.klp.mes.qc.domain.WmsCheckTask" id="WmsCheckTaskResult">
<result property="taskId" column="task_id"/>
<result property="taskName" column="task_name"/>
<result property="verifyTarget" column="verify_target"/>
<result property="workshopSection" column="workshop_section"/>
<result property="process" column="process"/>
<result property="unitGroup" column="unit_group"/>
<result property="inspectionResult" column="inspection_result"/>
<result property="inspectionType" column="inspection_type"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>