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

m1991's avatar
m1991 committed
3

licc's avatar
licc committed
4
import lombok.Data;
m1991's avatar
m1991 committed
5 6
import java.io.Serializable;

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

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

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