|
|
|
@@ -434,14 +434,18 @@ |
|
|
|
|
|
|
|
<select id="findCountByFilter" parameterType="com.iformall.domain.dto.WxCUserBasicInfoDto" resultType="java.lang.Long"> |
|
|
|
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"/> |
|
|
|
</select> |
|
|
|
|
|
|
|
<select id="findListByFilter" parameterType="com.iformall.domain.dto.WxCUserBasicInfoDto" resultMap="BaseResultMap"> |
|
|
|
select <include refid="msgColumns"/> |
|
|
|
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"/> |
|
|
|
</select> |
|
|
|
|
|
|
|
|