feat: 扩展领域模型与配置

This commit is contained in:
贺爱泽
2025-12-01 13:26:05 +08:00
parent a08804658b
commit 5ddad07658
148 changed files with 8519 additions and 2 deletions

View File

@@ -0,0 +1,27 @@
namespace TakeoutSaaS.Domain.Stores.Enums;
/// <summary>
/// 门店运营状态。
/// </summary>
public enum StoreStatus
{
/// <summary>
/// 未开业或休眠。
/// </summary>
Closed = 0,
/// <summary>
/// 准备营业。
/// </summary>
Preparing = 1,
/// <summary>
/// 正常营业中。
/// </summary>
Operating = 2,
/// <summary>
/// 暂停营业。
/// </summary>
Suspended = 3
}