You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
577 B
C#

using System.ComponentModel;
namespace TradeUsedSale.Enums
{
public enum UsedSalePlatformStatus
{
/// <summary>
/// 未上架
/// </summary>
[Description("未上架")] NotListed = 1,
/// <summary>
/// 已上架
/// </summary>
[Description("已上架")] Listed,
/// <summary>
/// 待发货
/// </summary>
[Description("待发货")] PendingPickup,
/// <summary>
/// 售卖完成
/// </summary>
[Description("售卖完成")] Sold
}
}