All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xyz.erupt.core.context.MetaUser Maven / Gradle / Ivy

There is a newer version: 1.12.17
Show newest version
package xyz.erupt.core.context;

import lombok.Getter;
import lombok.Setter;

/**
 * @author YuePeng
 * date 2021/12/20 23:20
 */
@Getter
@Setter
public class MetaUser {

    private String uid; //用户id

    private String account; //登录用户名

    private String name; //用户姓名

    public MetaUser(String uid, String account, String name) {
        this.uid = uid;
        this.account = account;
        this.name = name;
    }

    public MetaUser() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy