refactor: #141 #202 重构检票口/候车室数据结构

This commit is contained in:
denglihong2007
2025-08-10 16:46:36 +08:00
parent 9143d6b1ff
commit 9ad7ea432a
33 changed files with 450 additions and 533 deletions

View File

@@ -2,7 +2,8 @@
{
public class TicketCheck
{
public string WaitingAreaName { get; set; }
public Guid Id { get; set; } = Guid.NewGuid();
public string Name { get; set; }
public override string ToString() => Name;
}
}
}