fix: 🐛修改分页不生效问题
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.cnbm.admin.enums;
|
||||
|
||||
public enum LoginOperationEnum {
|
||||
/**
|
||||
* 用户登录
|
||||
*/
|
||||
LOGIN(0),
|
||||
/**
|
||||
* 用户退出
|
||||
*/
|
||||
LOGOUT(1);
|
||||
|
||||
private int value;
|
||||
|
||||
LoginOperationEnum(int value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
public int value() {
|
||||
return this.value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user