docs: 补齐核心枚举注释

This commit is contained in:
贺爱泽
2025-12-01 13:31:28 +08:00
parent 5ddad07658
commit 84ac31158c
11 changed files with 217 additions and 0 deletions

View File

@@ -5,8 +5,23 @@ namespace TakeoutSaaS.Domain.Products.Enums;
/// </summary>
public enum ProductStatus
{
/// <summary>
/// 草稿,尚未上架。
/// </summary>
Draft = 0,
/// <summary>
/// 已上架售卖中。
/// </summary>
OnSale = 1,
/// <summary>
/// 临时下架。
/// </summary>
OffShelf = 2,
/// <summary>
/// 归档不再使用。
/// </summary>
Archived = 3
}