k94314517
2025-07-03 c7411bc1d1e5cf5ada4311258d9201b3efa66bdf
server/service/src/main/resources/mappers/SystemPermissionMapper.xml
@@ -30,6 +30,15 @@
      <if test="dto.type != null">
        AND ifnull(perm.type,0) in(0, ${dto.type})
      </if>
      <if test="dto.iscom != null">
        AND ifnull(perm.iscom,0) =${dto.iscom}
      </if>
      <if test="dto.isshop != null">
        AND ifnull(perm.isshop,0)=${dto.isshop}
      </if>
      <if test="dto.isadmin != null">
        AND ifnull(perm.isadmin,0) = ${dto.isadmin}
      </if>
      <if test="dto.name != null  and dto.name!=''">
        AND perm.`NAME` LIKE CONCAT('%', #{dto.name}, '%')
      </if>