From a85508278ebdd73b32a92446ff741609ddb7d047 Mon Sep 17 00:00:00 2001 From: liyj <1003249715@qq.com> Date: Sun, 08 Sep 2024 17:47:53 +0800 Subject: [PATCH] 1、新增对外展示事项进度字段 --- dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml index cb3b629..c168b50 100644 --- a/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml +++ b/dyh-service/dyh-mediate/src/main/java/cn/huge/module/cases/dao/mapper/xml/CaseInfoMapper.xml @@ -70,6 +70,8 @@ <result property="statusName" column="status_name"/> <result property="process" column="process"/> <result property="processName" column="process_name"/> + <result property="infoProcess" column="infoProcess"/> + <result property="infoProcessName" column="info_process_name"/> <result property="wantUnitId" column="want_unit_id"/> <result property="wantUnitName" column="want_unit_name"/> <result property="wantUserId" column="want_user_id"/> @@ -160,6 +162,8 @@ status_name, process, process_name, + info_process, + info_process_name, want_unit_id, want_unit_name, want_user_id, @@ -229,6 +233,8 @@ <if test="entity.statusName != null">status_name = #{entity.statusName},</if> <if test="entity.process != null">process = #{entity.process},</if> <if test="entity.processName != null">process_name = #{entity.processName},</if> + <if test="entity.infoProcess != null">info_process = #{entity.infoProcess},</if> + <if test="entity.infoProcessName != null">info_process_name = #{entity.infoProcessName},</if> <if test="entity.wantUnitId != null">want_unit_id = #{entity.wantUnitId},</if> <if test="entity.wantUnitName != null">want_unit_name = #{entity.wantUnitName},</if> <if test="entity.wantUserId != null">want_user_id = #{entity.wantUserId},</if> @@ -463,6 +469,12 @@ <if test="terms.processName != null and terms.processName !=''"> and process_name = #{terms.processName} </if> + <if test="terms.infoProcess != null and terms.infoProcess !=''"> + and info_process = #{terms.infoProcess} + </if> + <if test="terms.infoProcessName != null and terms.infoProcessName !=''"> + and info_process_name = #{terms.infoProcessName} + </if> <if test="terms.wantUnitId != null and terms.wantUnitId !=''"> and want_unit_id = #{terms.wantUnitId} </if> -- Gitblit v1.8.0