From 1d22a73ebd5cb8bd420e8ab55e18d5bd19bfdc1e Mon Sep 17 00:00:00 2001 From: guyue <1721849008@qq.com> Date: 星期三, 23 七月 2025 10:22:34 +0800 Subject: [PATCH] 更新判断新平台 --- src/main/resources/mapper/PlatformMapper.xml | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/src/main/resources/mapper/PlatformMapper.xml b/src/main/resources/mapper/PlatformMapper.xml index af932e8..27b3d7d 100644 --- a/src/main/resources/mapper/PlatformMapper.xml +++ b/src/main/resources/mapper/PlatformMapper.xml @@ -26,8 +26,17 @@ <include refid="Base_Column_List"/> from platform where domain = #{domain} + <if test="null != platformName and '' != platformName"> and platform_name =#{platformName} </if> </select> + + <select id="getPlatformByDomainWeiYi" resultType="com.linghu.model.entity.Platform"> + select + <include refid="Base_Column_List"/> + from platform + where domain = #{domain} + + </select> </mapper> -- Gitblit v1.7.1