RequestLogVO.java 990 B

1234567891011121314151617181920212223242526272829303132333435
  1. package jnpf.model;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. /**
  5. *
  6. * @author JNPF开发平台组
  7. * @version V3.1.0
  8. * @copyright 引迈信息技术有限公司
  9. * @date 2021/3/16 10:10
  10. */
  11. @Data
  12. public class RequestLogVO {
  13. @Schema(description = "id")
  14. private String id;
  15. @Schema(description = "请求时间",example = "1")
  16. private Long creatorTime;
  17. @Schema(description = "请求用户名")
  18. private String userName;
  19. @Schema(description = "请求IP")
  20. private String ipAddress;
  21. @Schema(description = "请求设备")
  22. private String platForm;
  23. @Schema(description = "请求地址")
  24. private String requestUrl;
  25. @Schema(description = "请求类型")
  26. private String requestMethod;
  27. @Schema(description = "请求耗时",example = "1")
  28. private Long requestDuration;
  29. @Schema(description = "地点")
  30. private String ipAddressName;
  31. @Schema(description = "浏览器")
  32. private String browser;
  33. }