LoginLogVO.java 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 LoginLogVO {
  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 abstracts;
  25. @Schema(description = "地点")
  26. private String ipAddressName;
  27. @Schema(description = "浏览器")
  28. private String browser;
  29. @Schema(description = "是否登录成功标志")
  30. private Integer loginMark;
  31. @Schema(description = "登录类型")
  32. private Integer loginType;
  33. /**
  34. * 请求耗时
  35. */
  36. public int requestDuration;
  37. }