UserInfo.java 820 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package com.poyee.common.service.common.user;
  2. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. import java.util.List;
  6. /**
  7. * @author by po'yi
  8. * @Classname UserInfo
  9. * @Description 用户信息
  10. * @Date 2022/8/18 15:46
  11. */
  12. @Data
  13. @JsonIgnoreProperties(ignoreUnknown = true)
  14. public class UserInfo implements Serializable {
  15. private Integer id;
  16. /**
  17. * 昵称
  18. */
  19. private String nickname;
  20. /**
  21. * 头像
  22. */
  23. private String avatar;
  24. /**
  25. * 角色code
  26. */
  27. private String roleCode;
  28. private Integer merchantId;
  29. private String merchantName;
  30. private String merchantAvatar;
  31. /**
  32. * 权限
  33. */
  34. private List<String> permissionsList;
  35. private String code;
  36. private Long point;
  37. private Integer faceVerify;
  38. private Integer accountStatus;
  39. }