1.添加主播直播类型模糊搜索

This commit is contained in:
2025-10-27 19:49:22 +08:00
parent 2145c51814
commit d9e2d188c1
2 changed files with 5 additions and 2 deletions

View File

@@ -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

View File

@@ -3,7 +3,7 @@ spring:
name: yudao-server
profiles:
active: dev
active: local
main:
allow-circular-references: true # 允许循环依赖,因为项目是三层架构,无法避免这个情况。