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

io.irain.reactor.security.domain.RoleInfo Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.irain.reactor.security.domain;

import lombok.*;
import lombok.experimental.Accessors;

import java.io.Serializable;

/**
 * @author youta
 **/
@Getter
@Setter
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@Builder
public class RoleInfo implements Serializable {

    /**
     * 角色id
     */
    private RoleEnum role;

    /**
     * 角色名称
     */
    private String roleName;

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy