1.添加员工主播数据更新字段查询

This commit is contained in:
2025-09-05 22:17:18 +08:00
parent e3c820271d
commit 4411d38b39
4 changed files with 18 additions and 0 deletions

View File

@@ -77,6 +77,10 @@
<if test="req.createTime != null">
and DATE(ns.create_time) =#{req.createTime}
</if>
<!-- 按照更新时间筛选主播 -->
<if test="req.updateTime != null">
and DATE(ns.update_time) =#{req.updateTime}
</if>
<if test="req.operationStatus != null">
and operation_status =#{req.operationStatus,jdbcType=INTEGER}
</if>
@@ -214,6 +218,11 @@
<if test="req.createTime != null">
and DATE(ns.create_time) =#{req.createTime}
</if>
<!-- 按照更新时间筛选主播 -->
<if test="req.updateTime != null">
and DATE(ns.update_time) =#{req.updateTime}
</if>
<if test="req.operationStatus != null">
and operation_status =#{req.operationStatus,jdbcType=INTEGER}
</if>