1.区分国家地区筛选
2.添加获取地区内国家接口
This commit is contained in:
@@ -67,8 +67,11 @@
|
||||
WHERE tenant_id =#{req.tenantId,jdbcType=BIGINT}
|
||||
and ns.user_id =#{req.userId,jdbcType=BIGINT}
|
||||
<!-- 主播国家筛选 -->
|
||||
<if test="req.country!= '' and req.country != null">
|
||||
and ci.country_group_name =#{req.country,jdbcType=VARCHAR}
|
||||
<if test="req.region!= '' and req.country != null">
|
||||
and ci.country_group_name =#{req.region,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="req.country != '' and req.country !=null ">
|
||||
and ns.country = #{req.country}
|
||||
</if>
|
||||
<!-- 按照入库时间筛选主播 -->
|
||||
<if test="req.createTime != null">
|
||||
@@ -193,8 +196,11 @@
|
||||
and user_id = #{req.userId,jdbcType=BIGINT}
|
||||
</if>
|
||||
<!-- 主播国家筛选 -->
|
||||
<if test="req.country!= '' and req.country != null">
|
||||
and ci.country_group_name =#{req.country,jdbcType=VARCHAR}
|
||||
<if test="req.region!= '' and req.country != null">
|
||||
and ci.country_group_name =#{req.region,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="req.country != '' and req.country !=null ">
|
||||
and ns.country = #{req.country}
|
||||
</if>
|
||||
<!-- 按照入库时间筛选主播 -->
|
||||
<if test="req.createTime != null">
|
||||
|
||||
Reference in New Issue
Block a user