guyue
2025-07-23 1d22a73ebd5cb8bd420e8ab55e18d5bd19bfdc1e
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>