fix: 🐛修改分页不生效问题

This commit is contained in:
weihongyang
2022-08-08 16:36:53 +08:00
parent 16e656d820
commit 030abafd1f
13 changed files with 277 additions and 16 deletions

View File

@@ -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;
}
}