From 0d243e7f5dc593cdc6e0608bb52cd635f8fc6982 Mon Sep 17 00:00:00 2001 From: zxl <763096477@qq.com> Date: 星期五, 19 九月 2025 11:59:44 +0800 Subject: [PATCH] 新需求 --- ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml | 37 ++++++++++++++++++++++++++++++++++++- 1 files changed, 36 insertions(+), 1 deletions(-) diff --git a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml index 4d3f316..c35f26a 100644 --- a/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml +++ b/ycl-server/src/main/resources/mapper/zgyw/TMonitorMapper.xml @@ -166,7 +166,25 @@ <if test="cameraDept != null and cameraDept != ''">and camera_dept = #{cameraDept}</if> <if test="hybm != null and hybm != ''">and hybm = #{hybm}</if> <if test="lxbm != null ">and lxbm = #{lxbm}</if> -<!-- <if test="recovery != null ">and p.recovery = #{recovery}</if>--> + <if test="constructionType != null and constructionType != ''"> + <choose> + <when test="constructionType == 'PHASE_ONE_TWO'"> + and m.name LIKE 'DX_%' + </when> + <when test="constructionType == 'PHASE_THREE'"> + and m.name LIKE 'LT_%' + </when> + + <when test="constructionType == 'PHASE_FOURTH'"> + and ( + m.name LIKE 'DX_R%' + OR + m.name LIKE 'DX_RS%' + ) + </when> + </choose> + </if> + ${params.dataScope} </where> </select> @@ -417,6 +435,23 @@ <if test="address != null"> and p.dept_id = #{address} </if> + <if test="constructionType != null and constructionType != ''"> + <choose> + <when test="constructionType == 'PHASE_ONE_TWO'"> + and m.name LIKE 'DX_%' + </when> + <when test="constructionType == 'PHASE_THREE'"> + and m.name LIKE 'LT_%' + </when> + <when test="constructionType == 'PHASE_FOURTH'"> + and ( + m.name LIKE 'DX_R%' + OR + m.name LIKE 'DX_RS%' + ) + </when> + </choose> + </if> ${params.dataScope} </where> </select> -- Gitblit v1.8.0