1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| package com.stylefeng.guns.modular.system.util.qianyuntong.model;
|
| import lombok.Data;
|
| /**
| * 用户信息
| * @author zhibing.pu
| * @Date 2025/6/6 15:11
| */
| @Data
| public class QYTUserInfo {
| /**
| * 手机号码
| */
| private String mobile;
| /**
| * 用户昵称
| */
| private String nickname;
| /**
| * 小头像url
| */
| private String photoUrl;
| /**
| * 大头像url
| */
| private String photoUrlBig;
| /**
| * 企业名称
| */
| private String enterName;
|
| }
|
|