From fe5eb6825b38bbddcb357ac39921c729f1b24fe5 Mon Sep 17 00:00:00 2001 From: luohairen <3399054449@qq.com> Date: 星期四, 26 十二月 2024 17:57:31 +0800 Subject: [PATCH] 项目查询返回赋码 --- 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