UserLogVO.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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/12 15:31
  10. */
  11. @Data
  12. public class UserLogVO {
  13. @Schema(description = "登录类型")
  14. private Integer loginType;
  15. @Schema(description = "登录时间")
  16. private Long creatorTime;
  17. @Schema(description = "登录用户")
  18. private String userName;
  19. @Schema(description = "登录IP")
  20. private String ipAddress;
  21. @Schema(description = "IP所在城市")
  22. private String ipAddressName;
  23. @Schema(description = "浏览器")
  24. private String browser;
  25. @Schema(description = "平台设备")
  26. private String platForm;
  27. @Schema(description = "请求耗时")
  28. private Integer requestDuration;
  29. @Schema(description = "是否登录成功标志")
  30. private Integer loginMark;
  31. @Schema(description = "说明")
  32. private String abstracts;
  33. @Schema(description = "主键")
  34. private String id;
  35. }