Просмотр исходного кода

[标签][修改]:会员标签过滤条件更改

release_toaliyun_real
hupeng 6 лет назад
Родитель
Сommit
2e9b1c0cd7
1 измененных файлов: 6 добавлений и 2 удалений
  1. +6
    -2
      mallinkService/src/main/resources/mapper/WxCUserBasicInfoMapper.xml

+ 6
- 2
mallinkService/src/main/resources/mapper/WxCUserBasicInfoMapper.xml Просмотреть файл

@@ -434,14 +434,18 @@


<select id="findCountByFilter" parameterType="com.iformall.domain.dto.WxCUserBasicInfoDto" resultType="java.lang.Long"> <select id="findCountByFilter" parameterType="com.iformall.domain.dto.WxCUserBasicInfoDto" resultType="java.lang.Long">
select count(*) from wx_c_user_basic_info cu select count(*) from wx_c_user_basic_info cu
join wx_c_user_tags cut on cut.`id` = cu.`tag_id`
<if test=" null != tagIds ">
join wx_c_user_tags cut on cut.`id` = cu.`tag_id`
</if>
<include refid="filterWhereConditions"/> <include refid="filterWhereConditions"/>
</select> </select>


<select id="findListByFilter" parameterType="com.iformall.domain.dto.WxCUserBasicInfoDto" resultMap="BaseResultMap"> <select id="findListByFilter" parameterType="com.iformall.domain.dto.WxCUserBasicInfoDto" resultMap="BaseResultMap">
select <include refid="msgColumns"/> select <include refid="msgColumns"/>
from wx_c_user_basic_info cu from wx_c_user_basic_info cu
join wx_c_user_tags cut on cut.`id` = cu.`tag_id`
<if test=" null != tagIds ">
join wx_c_user_tags cut on cut.`id` = cu.`tag_id`
</if>
<include refid="filterWhereConditions"/> <include refid="filterWhereConditions"/>
</select> </select>




Загрузка…
Отмена
Сохранить