潘志宝
4 天以前 af7bd200a95b9fc6b8b3f3fc603d612221e21fc7
提交 | 用户 | 时间
e7c126 1 package com.iailab.module.infra.controller.admin.logger.vo.apierrorlog;
H 2
3 import com.iailab.framework.common.pojo.PageParam;
4 import io.swagger.v3.oas.annotations.media.Schema;
5 import lombok.Data;
6 import lombok.EqualsAndHashCode;
7 import lombok.ToString;
8 import org.springframework.format.annotation.DateTimeFormat;
9
10 import java.time.LocalDateTime;
11
12 import static com.iailab.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
13
14 @Schema(description = "管理后台 - API 错误日志分页 Request VO")
15 @Data
16 @EqualsAndHashCode(callSuper = true)
17 @ToString(callSuper = true)
18 public class ApiErrorLogPageReqVO extends PageParam {
19
20     @Schema(description = "用户编号", example = "666")
21     private Long userId;
22
23     @Schema(description = "用户类型", example = "1")
24     private Integer userType;
25
26     @Schema(description = "应用名", example = "dashboard")
27     private String applicationName;
28
29     @Schema(description = "请求地址", example = "/xx/yy")
30     private String requestUrl;
31
32     @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
33     @Schema(description = "异常发生时间")
34     private LocalDateTime[] exceptionTime;
35
36     @Schema(description = "处理状态", example = "0")
37     private Integer processStatus;
38
39 }