You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package com.ruoyi.common.enums; |
|
|
|
/** |
|
* 操作人类别 |
|
* |
|
* @author ruoyi |
|
*/ |
|
public enum OperatorType |
|
{ |
|
/** |
|
* 其它 |
|
*/ |
|
OTHER, |
|
|
|
/** |
|
* 后台用户 |
|
*/ |
|
MANAGE, |
|
|
|
/** |
|
* 手机端用户 |
|
*/ |
|
MOBILE |
|
}
|
|
|