|
package com.cn.app.superbot.constants;
|
|
|
|
/**
|
|
* The interface Role constants.
|
|
*
|
|
* @author bdth
|
|
* @email 2074055628 @qq.om
|
|
*/
|
|
public interface RoleConstants {
|
|
|
|
/**
|
|
* The constant USER.
|
|
*/
|
|
String USER = "USER";
|
|
|
|
/**
|
|
* The constant ADMIN.
|
|
*/
|
|
String ADMIN = "ADMIN";
|
|
}
|