k94314517
2024-07-30 d37bf55e27b7edb61037bccde6cabeda1ddec6b7
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>