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

cn.bootx.platform.starter.auth.entity.AuthInfoResult Maven / Gradle / Ivy

There is a newer version: 1.3.6.2
Show newest version
package cn.bootx.platform.starter.auth.entity;

import cn.bootx.platform.common.core.entity.UserDetail;
import lombok.Data;
import lombok.experimental.Accessors;

/**
 * 认证返回结果
 *
 * @author xxm
 * @since 2021/7/30
 */
@Data
@Accessors(chain = true)
public class AuthInfoResult {

    /** 用户id */
    private Object id;

    /** 认证终端(例如管理端/小程序/h5等) */
    private String client = "";

    /** 登录方式(例如web/开放平台/app等) */
    private String loginType = "";

    /** 用户对象 */
    private UserDetail userDetail;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy