Administrator
2023-12-07 1fbf81e162e6e16ffd927b736c3192ea3023c88e
Merge remote-tracking branch 'origin/master'
6个文件已修改
46 ■■■■ 已修改文件
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaBlockMapper.xml 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientMapper.xml 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaDivideMapper.xml 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaRoleMapper.xml 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaBlockMapper.xml
@@ -40,13 +40,13 @@
    count(*)
    from ba_block
      <trim prefix="where " suffixOverrides="and">
        <if test="name != null">
        <if test="name != null and name != ''">
          name like concat('%', #{name}, '%') and
        </if>
        <if test="header != null">
        <if test="header != null and header != ''">
          header like concat('%', #{header}, '%') and
        </if>
        <if test="phone != null">
        <if test="phone != null and phone != ''">
          phone = '#{phone,jdbcType=VARCHAR}' and
        </if>
        <if test="area != null">
@@ -60,13 +60,13 @@
    <include refid="Base_Column_List" />
    from ba_block
    <trim prefix="where " suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        name like concat('%', #{name}, '%') and
      </if>
      <if test="header != null">
      <if test="header != null and header != ''">
        header = '#{header,jdbcType=VARCHAR}' and
      </if>
      <if test="phone != null">
      <if test="phone != null and phone != ''">
        phone = '#{phone,jdbcType=VARCHAR}' and
      </if>
      <if test="area != null">
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientMapper.xml
@@ -66,13 +66,13 @@
            <if test="blockId != null">
                bc.blockId = #{blockId,jdbcType=BIGINT} and
            </if>
            <if test="name != null">
            <if test="name != null and name != ''">
                bc.`name` like concat('%', #{name}, '%') and
            </if>
            <if test="num != null">
            <if test="num != null and num != ''">
                bc.num = #{num,jdbcType=VARCHAR} and
            </if>
            <if test="phone != null">
            <if test="phone != null and phone != ''">
                bc.phone = #{phone,jdbcType=VARCHAR} and
            </if>
        </trim>
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaClientTypeMapper.xml
@@ -37,7 +37,7 @@
    count(*)
    from ba_client_type
    <trim prefix="where" suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        name like concat('%', #{name}, '%') and
      </if>
    </trim>
@@ -48,7 +48,7 @@
    <include refid="Base_Column_List" />
    from ba_client_type
    <trim prefix="where" suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        name like concat('%', #{name}, '%')
      </if>
    </trim>
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaDivideMapper.xml
@@ -52,13 +52,13 @@
    left join ba_block bbk on bd.blockId = bbk.id
    where bd.deleted != 1
    <trim prefix="and" suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        bd.name like concat('%', #{name}, '%') and
      </if>
      <if test="header != null">
      <if test="header != null and header != ''">
        bd.header = '#{header,jdbcType=VARCHAR}' and
      </if>
      <if test="phone != null">
      <if test="phone != null and phone != ''">
        bd.phone = '#{phone,jdbcType=VARCHAR}' and
      </if>
      <if test="blockName != null">
@@ -81,13 +81,13 @@
    left join ba_district bdtv on bd.villageId=bdtv.id
    where bd.deleted != 1
    <trim prefix="and" suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        bd.name like concat('%', #{name}, '%') and
      </if>
      <if test="header != null">
      <if test="header != null and header != ''">
        bd.header = '#{header,jdbcType=VARCHAR}' and
      </if>
      <if test="phone != null">
      <if test="phone != null and phone != ''">
        bd.phone = '#{phone,jdbcType=VARCHAR}' and
      </if>
      <if test="blockName != null">
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaRoleMapper.xml
@@ -47,7 +47,7 @@
    count(*)
    from ba_role where deleted!=1
    <trim prefix="and" suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        name like concat('%', #{name}, '%')
      </if>
    </trim>
@@ -58,7 +58,7 @@
    <include refid="part_Column_List" />
    from ba_role where deleted!=1
    <trim prefix="and" suffixOverrides="and">
      <if test="name != null">
      <if test="name != null and name != ''">
        name like concat('%', #{name}, '%')
      </if>
    </trim>
pipIrr-platform/pipIrr-global/src/main/resources/mapper/BaUserMapper.xml
@@ -66,10 +66,10 @@
        from ba_user
        where supperAdmin!=1 and deleted!=1
        <trim prefix="and" suffixOverrides="and">
            <if test="name != null">
            <if test="name != null and name != ''">
                name like concat('%', #{name}, '%') and
            </if>
            <if test="phone != null">
            <if test="phone != null and phone !=''">
                phone = #{phone,jdbcType=VARCHAR}
            </if>
        </trim>
@@ -84,10 +84,10 @@
        left join ba_block bb on bu.blockId = bb.id
        where bu.supperAdmin!=1 and bu.deleted!=1
        <trim prefix="and" suffixOverrides="and">
            <if test="name != null">
            <if test="name != null and name != ''">
                bu.name like concat('%', #{name}, '%') and
            </if>
            <if test="phone != null">
            <if test="phone != null and phone !=''">
                bu.phone = #{phone,jdbcType=VARCHAR}
            </if>
        </trim>