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,26 @@
package com.cnbm.admin.enums;
public enum LoginStatusEnum {
/**
* 失败
*/
FAIL(0),
/**
* 成功
*/
SUCCESS(1),
/**
* 账号已锁定
*/
LOCK(2);
private int value;
LoginStatusEnum(int value) {
this.value = value;
}
public int value() {
return this.value;
}
}