ErrorLogVO.java 923 B

12345678910111213141516171819202122232425262728293031323334
  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 ErrorLogVO {
  13. @Schema(description = "创建用户")
  14. private String userName;
  15. @Schema(description = "创建时间",example = "1")
  16. private Long creatorTime;
  17. @Schema(description = "IP")
  18. private String ipAddress;
  19. private Long requestDuration;
  20. @Schema(description = "地点")
  21. private String ipAddressName;
  22. @Schema(description = "id")
  23. private String id;
  24. @Schema(description = "请求设备")
  25. private String platForm;
  26. @Schema(description = "浏览器")
  27. private String browser;
  28. @Schema(description = "请求类型")
  29. private String requestMethod;
  30. @Schema(description = "请求地址")
  31. private String requestUrl;
  32. }