AppUserInfoVO.java 988 B

12345678910111213141516171819202122232425262728293031323334353637
  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. @Schema(description = "常用模型")
  13. public class AppUserInfoVO {
  14. @Schema(description = "主键")
  15. private String id;
  16. @Schema(description = "户名")
  17. private String realName;
  18. @Schema(description = "部门名称")
  19. private String organizeName;
  20. @Schema(description = "账号")
  21. private String account;
  22. @Schema(description = "岗位名称")
  23. private String positionName;
  24. @Schema(description = "办公电话")
  25. private String telePhone;
  26. @Schema(description = "办公座机")
  27. private String landline;
  28. @Schema(description = "手机号码")
  29. private String mobilePhone;
  30. @Schema(description = "用户头像")
  31. private String headIcon;
  32. @Schema(description = "邮箱")
  33. private String email;
  34. }