From 4953184bfbd49dd602ab60fddb096c50d65e3da5 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 26 十二月 2024 17:58:59 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- business/src/main/resources/mapper/ProjectInfoMapper.xml | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/business/src/main/resources/mapper/ProjectInfoMapper.xml b/business/src/main/resources/mapper/ProjectInfoMapper.xml index 82db28a..ac32a87 100644 --- a/business/src/main/resources/mapper/ProjectInfoMapper.xml +++ b/business/src/main/resources/mapper/ProjectInfoMapper.xml @@ -94,7 +94,8 @@ TPURI.wechat as TPURI_wechat, TPURI.contact_address as TPURI_contact_address, TPURI.post_code as TPURI_post_code, - TPURI.email as TPURI_email + TPURI.email as TPURI_email, + TPI.coding FROM t_project_info TPI LEFT JOIN t_project_investment_funding TPIF ON TPI.id = TPIF.project_id and TPIF.deleted = 0 @@ -104,6 +105,7 @@ LEFT JOIN t_project_process TPP ON TPI.id = TPP.project_id and TPP.deleted = 0 <where> TPI.deleted = 0 + and TPI.used_status = 2 <if test="query.projectName !=null and query.projectName!=''"> and TPI.project_name like concat('%',#{query.projectName},'%') </if> -- Gitblit v1.8.0