1.添加员工主播数据更新字段查询
This commit is contained in:
@@ -56,6 +56,10 @@ public class EmployeeHostsPageReqVO extends PageParam {
|
|||||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||||
private LocalDateTime createTime;
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
|
@Schema(description = "数据更新时间")
|
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||||
|
private LocalDateTime updateTime;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 昨日金币最大值
|
* 昨日金币最大值
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -54,6 +54,10 @@ public class NewHostsPageReqVO extends PageParam {
|
|||||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||||
private LocalDateTime createTime;
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
|
@Schema(description = "数据插入时间")
|
||||||
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
||||||
|
private LocalDateTime updateTime;
|
||||||
|
|
||||||
@Schema(description = "用户 Id", example = "10967")
|
@Schema(description = "用户 Id", example = "10967")
|
||||||
private Long userId;
|
private Long userId;
|
||||||
|
|
||||||
|
|||||||
@@ -77,6 +77,10 @@
|
|||||||
<if test="req.createTime != null">
|
<if test="req.createTime != null">
|
||||||
and DATE(ns.create_time) =#{req.createTime}
|
and DATE(ns.create_time) =#{req.createTime}
|
||||||
</if>
|
</if>
|
||||||
|
<!-- 按照更新时间筛选主播 -->
|
||||||
|
<if test="req.updateTime != null">
|
||||||
|
and DATE(ns.update_time) =#{req.updateTime}
|
||||||
|
</if>
|
||||||
<if test="req.operationStatus != null">
|
<if test="req.operationStatus != null">
|
||||||
and operation_status =#{req.operationStatus,jdbcType=INTEGER}
|
and operation_status =#{req.operationStatus,jdbcType=INTEGER}
|
||||||
</if>
|
</if>
|
||||||
@@ -214,6 +218,11 @@
|
|||||||
<if test="req.createTime != null">
|
<if test="req.createTime != null">
|
||||||
and DATE(ns.create_time) =#{req.createTime}
|
and DATE(ns.create_time) =#{req.createTime}
|
||||||
</if>
|
</if>
|
||||||
|
|
||||||
|
<!-- 按照更新时间筛选主播 -->
|
||||||
|
<if test="req.updateTime != null">
|
||||||
|
and DATE(ns.update_time) =#{req.updateTime}
|
||||||
|
</if>
|
||||||
<if test="req.operationStatus != null">
|
<if test="req.operationStatus != null">
|
||||||
and operation_status =#{req.operationStatus,jdbcType=INTEGER}
|
and operation_status =#{req.operationStatus,jdbcType=INTEGER}
|
||||||
</if>
|
</if>
|
||||||
|
|||||||
@@ -181,6 +181,7 @@ logging:
|
|||||||
cn.iocoder.yudao.module.iot.dal.mysql: debug
|
cn.iocoder.yudao.module.iot.dal.mysql: debug
|
||||||
cn.iocoder.yudao.module.iot.dal.tdengine: DEBUG
|
cn.iocoder.yudao.module.iot.dal.tdengine: DEBUG
|
||||||
cn.iocoder.yudao.module.ai.dal.mysql: debug
|
cn.iocoder.yudao.module.ai.dal.mysql: debug
|
||||||
|
cn.iocoder.yudao.module.tkdata.dal.mysql: debug
|
||||||
org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR # TODO 芋艿:先禁用,Spring Boot 3.X 存在部分错误的 WARN 提示
|
org.springframework.context.support.PostProcessorRegistrationDelegate: ERROR # TODO 芋艿:先禁用,Spring Boot 3.X 存在部分错误的 WARN 提示
|
||||||
|
|
||||||
debug: false
|
debug: false
|
||||||
|
|||||||
Reference in New Issue
Block a user