水电费

This commit is contained in:
bob
2025-07-16 17:47:53 +08:00
parent 7cccd2a81c
commit 3bd1ffbb75
75 changed files with 2148 additions and 1265 deletions

9
Entity/LockType.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace Fantasy;
public enum LockType
{
None = 0,
AuthenticationRegisterLock = 1, // 鉴权注册锁
AuthenticationRemoveLock = 1, // 鉴权移除锁
AuthenticationLoginLock = 2 // 鉴权登录锁
}