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