优化查看脚本执行结果、mtragent管理初版

This commit is contained in:
gaoyutao
2025-11-18 18:21:04 +08:00
parent bd65b27605
commit c91504912b
42 changed files with 2975 additions and 0 deletions
@@ -43,6 +43,13 @@
<if test="gateway != null and gateway != ''"> and gateway = #{gateway}</if>
<if test="bindIp != null and bindIp != ''"> and bind_ip = #{bindIp}</if>
<if test="newFlag != null "> and new_flag = #{newFlag}</if>
<if test="clientIds != '' and clientIds != null">
and (bind_ip='1' or bind_ip='3') and new_flag=1
and client_id in
<foreach collection="clientIds.split(',')" item="clientId" open="(" separator="," close=")">
#{clientId}
</foreach>
</if>
</where>
</select>