新版仿ok交易所-后端
zj
2025-02-08 75018b2f492444248d8b476d9703bb312d2befc3
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
34
/*
 * Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
 *
 * https://www.mall4j.com/
 *
 * 未经允许,不可做商业用途!
 *
 * 版权所有,侵权必究!
 */
 
package com.yami.trading.bean.vo;
 
import lombok.Data;
 
@Data
public class UserVO {
 
    /**
     * 用户id
     */
    private String userId;
 
    /**
     * 用户昵称
     */
    private String nickName;
 
    private String userMobile;
 
    /**
     * 用户头像
     */
    private String pic;
}