修改协议工具

This commit is contained in:
2025-07-27 23:46:43 +08:00
parent 743c1d2baa
commit be33e12b35
112 changed files with 1021 additions and 1119 deletions

View File

@@ -0,0 +1,15 @@
using Fantasy;
using Fantasy.Entitas.Interface;
namespace NB.Authentication;
public class AccountDestroySystem : DestroySystem<Account>
{
protected override void Destroy(Account self)
{
self.Username = null;
self.Password = null;
self.CreateTime = 0;
self.LoginTime = 0;
}
}