Merge branch 'frx' into dev

This commit is contained in:
furongxin 2024-04-17 18:31:18 +08:00
commit bf012eed22
2 changed files with 4 additions and 4 deletions

View File

@ -39,6 +39,6 @@ public class LogInstancePageReqVO extends PageParam {
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
private LocalDateTime[] createTime;
@Schema(description = "未读", example = "0")
private Integer unRead;
@Schema(description = "已读、读 | 0未读、1", example = "0")
private Integer readStatus;
}

View File

@ -115,8 +115,8 @@
and a.create_time <= #{reqVO.createTime[1]}
</if>
</if>
<if test="reqVO.unRead != null">
and e.read_status = 0
<if test="reqVO.readStatus != null">
and e.read_status = #{reqVO.readStatus}
</if>
<if test="pagingType == 0">
and a.start_user_id != #{userId}