From e9895d000bf722b708af01b5d89af7c0f147d31d Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期一, 23 十二月 2024 09:50:27 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- business/src/main/resources/mapper/ProjectProcessMapper.xml | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/business/src/main/resources/mapper/ProjectProcessMapper.xml b/business/src/main/resources/mapper/ProjectProcessMapper.xml index 3d69fe9..7fe3996 100644 --- a/business/src/main/resources/mapper/ProjectProcessMapper.xml +++ b/business/src/main/resources/mapper/ProjectProcessMapper.xml @@ -37,12 +37,10 @@ <result column="gmt_update_time" property="gmtUpdateTime" /> <result column="update_by" property="updateBy" /> <result column="create_by" property="createBy" /> - <result column="flowable_process_id" property="flowableProcessId" /> + <result column="process_def_id" property="processDefId" /> + <result column="process_ins_id" property="processInsId" /> <!-- <association property="id" column=""--> </resultMap> - - - @@ -50,7 +48,7 @@ <select id="getById" resultMap="BaseResultMap"> SELECT TPP.project_id, - TPP.flowable_process_id, + TPP.process_def_id, TPP.id FROM t_project_process TPP @@ -62,7 +60,8 @@ <select id="getPage" resultMap="BaseResultMap"> SELECT PI.*, - TPP.flowable_process_id + TPP.process_def_id, + TPP.process_ins_id FROM t_project_info PI LEFT JOIN t_project_process TPP ON TPP.project_id = PI.id AND TPP.deleted = 0 AND PI.deleted = 0 -- Gitblit v1.8.0