UsersDto.java 625 Bytes
Newer Older
1
package cn.wisenergy.model.dto;
m1991's avatar
m1991 committed
2

m1991's avatar
m1991 committed
3

4
import cn.wisenergy.model.app.User;
licc's avatar
licc committed
5
import lombok.Data;
m1991's avatar
m1991 committed
6 7
import java.io.Serializable;

m1991's avatar
m1991 committed
8 9
/**
 * Created by m1991 on 2021/3/1 14:00
licc's avatar
licc committed
10
 * @author 86187
m1991's avatar
m1991 committed
11
 */
licc's avatar
licc committed
12
@Data
m1991's avatar
m1991 committed
13 14 15 16
public class UsersDto extends User implements Serializable {
    /**
     * 主键id
     */
licc's avatar
licc committed
17
    private Integer id;
m1991's avatar
m1991 committed
18 19 20 21 22 23 24
    /**
     * 手机号作为用户账号
     */
    private String userId;
    /**
     * 用户头像
     */
licc's avatar
licc committed
25
    private String headImage;
m1991's avatar
m1991 committed
26 27 28 29 30 31 32 33 34 35
    /**
     * 用户会员等级
     */
    private int userLevel;

    /**
     * 用户本人邀请码
     */
    private String inviteCode;

m1991's avatar
m1991 committed
36 37
    private String token;
}