1.添加主播直播类型模糊搜索
This commit is contained in:
@@ -35,6 +35,10 @@
|
|||||||
<if test="req.hostsId != '' and req.hostsId != null ">
|
<if test="req.hostsId != '' and req.hostsId != null ">
|
||||||
and ns.hosts_id like concat(#{req.hostsId,jdbcType=VARCHAR},'%')
|
and ns.hosts_id like concat(#{req.hostsId,jdbcType=VARCHAR},'%')
|
||||||
</if>
|
</if>
|
||||||
|
<!-- 直播类型模糊搜索 -->
|
||||||
|
<if test="req.hostsKind != null and req.hostsKind != ''">
|
||||||
|
and ns.hosts_kind like concat("%",#{req.hostsKind,jdbcType=VARCHAR},"%")
|
||||||
|
</if>
|
||||||
<!-- 是否分配筛选 -->
|
<!-- 是否分配筛选 -->
|
||||||
<if test="req.isAssigned != null ">
|
<if test="req.isAssigned != null ">
|
||||||
and ns.is_assigned =#{req.isAssigned,jdbcType=INTEGER}
|
and ns.is_assigned =#{req.isAssigned,jdbcType=INTEGER}
|
||||||
@@ -104,7 +108,6 @@
|
|||||||
and ns.Invitation_type =#{req.invitationType,jdbcType=INTEGER}
|
and ns.Invitation_type =#{req.invitationType,jdbcType=INTEGER}
|
||||||
</if>
|
</if>
|
||||||
<!-- 排序类型 -->
|
<!-- 排序类型 -->
|
||||||
<!-- 排序类型 -->
|
|
||||||
group by
|
group by
|
||||||
ns.hosts_id
|
ns.hosts_id
|
||||||
order by
|
order by
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ spring:
|
|||||||
name: yudao-server
|
name: yudao-server
|
||||||
|
|
||||||
profiles:
|
profiles:
|
||||||
active: dev
|
active: local
|
||||||
|
|
||||||
main:
|
main:
|
||||||
allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。
|
allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。
|
||||||
|
|||||||
Reference in New Issue
Block a user