用户注册与登录功能(待完善)
Sync All Branches to GitHub / sync (push) Successful in 3s

This commit is contained in:
2026-01-18 21:29:02 +08:00
parent ffecb1f6d8
commit 31f5a31b9b
31 changed files with 894 additions and 175 deletions
@@ -0,0 +1,21 @@
package top.crushtj.framework.common.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author ayi
* @version V1.0
* @title DeleteEnum
* @date 2026/01/18 21:15
* @description 删除标记
*/
@Getter
@AllArgsConstructor
public enum DeleteEnum {
YES(true),
NO(false);
private final Boolean value;
}
@@ -0,0 +1,21 @@
package top.crushtj.framework.common.enums;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author ayi
* @version V1.0
* @title StatusEnum
* @date 2026/01/18
* @description 状态
*/
@Getter
@AllArgsConstructor
public enum StatusEnum {
ENABLED(1),
DISABLED(0);
private final Integer value;
}