Merge branch 'frx' into dev
This commit is contained in:
commit
bf012eed22
@ -39,6 +39,6 @@ public class LogInstancePageReqVO 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 = "未读", example = "0")
|
@Schema(description = "已读、未读 | 0:未读、1:已读", example = "0")
|
||||||
private Integer unRead;
|
private Integer readStatus;
|
||||||
}
|
}
|
@ -115,8 +115,8 @@
|
|||||||
and a.create_time <= #{reqVO.createTime[1]}
|
and a.create_time <= #{reqVO.createTime[1]}
|
||||||
</if>
|
</if>
|
||||||
</if>
|
</if>
|
||||||
<if test="reqVO.unRead != null">
|
<if test="reqVO.readStatus != null">
|
||||||
and e.read_status = 0
|
and e.read_status = #{reqVO.readStatus}
|
||||||
</if>
|
</if>
|
||||||
<if test="pagingType == 0">
|
<if test="pagingType == 0">
|
||||||
and a.start_user_id != #{userId}
|
and a.start_user_id != #{userId}
|
||||||
|
Loading…
Reference in New Issue
Block a user