完成门店管理后端接口与任务
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
namespace TakeoutSaaS.Domain.Stores.Enums;
|
||||
|
||||
/// <summary>
|
||||
/// 门店经营状态。
|
||||
/// </summary>
|
||||
public enum StoreBusinessStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// 营业中。
|
||||
/// </summary>
|
||||
Open = 0,
|
||||
|
||||
/// <summary>
|
||||
/// 休息中(手动或自动)。
|
||||
/// </summary>
|
||||
Resting = 1,
|
||||
|
||||
/// <summary>
|
||||
/// 强制关闭(平台风控)。
|
||||
/// </summary>
|
||||
ForceClosed = 2
|
||||
}
|
||||
Reference in New Issue
Block a user