| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- package com.poyee.common.service.common.user;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import lombok.Data;
- import java.io.Serializable;
- import java.util.List;
- /**
- * @author by po'yi
- * @Classname UserInfo
- * @Description 用户信息
- * @Date 2022/8/18 15:46
- */
- @Data
- @JsonIgnoreProperties(ignoreUnknown = true)
- public class UserInfo implements Serializable {
- private Integer id;
- /**
- * 昵称
- */
- private String nickname;
- /**
- * 头像
- */
- private String avatar;
- /**
- * 角色code
- */
- private String roleCode;
- private Integer merchantId;
- private String merchantName;
- private String merchantAvatar;
- /**
- * 权限
- */
- private List<String> permissionsList;
- private String code;
- private Long point;
- private Integer faceVerify;
- private Integer accountStatus;
- }
|