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

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

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

import lombok.Data;
import lombok.experimental.Accessors;

import java.util.List;

/**
 * 认证应用
 *
 * @author xxm
 * @since 2022/6/27
 */
@Data
@Accessors(chain = true)
public class AuthClient {

    /** 终端id */
    private Long id;

    /** 编码 */
    private String code;

    /** 名称 */
    private String name;

    /** 在线时长 分钟 */
    private long timeout;

    /** 是否可用 */
    private boolean enable;

    /** 关联登录方式Id */
    private List loginTypeIds;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy