28 lines
483 B
C#
28 lines
483 B
C#
namespace TakeoutSaaS.Domain.Stores.Enums;
|
|
|
|
/// <summary>
|
|
/// 门店审核状态。
|
|
/// </summary>
|
|
public enum StoreAuditStatus
|
|
{
|
|
/// <summary>
|
|
/// 草稿,未提交审核。
|
|
/// </summary>
|
|
Draft = 0,
|
|
|
|
/// <summary>
|
|
/// 审核中。
|
|
/// </summary>
|
|
Pending = 1,
|
|
|
|
/// <summary>
|
|
/// 已激活(审核通过或自动通过)。
|
|
/// </summary>
|
|
Activated = 2,
|
|
|
|
/// <summary>
|
|
/// 已驳回。
|
|
/// </summary>
|
|
Rejected = 3
|
|
}
|