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

43 lines
1.0 KiB

2 years ago
namespace SiNan.Model
{
public class Enums
{
/// <summary>
/// 商品阶段 新品款=0 成长款=1 日销款=2 TOP款=3 清仓款=4
/// </summary>
public enum Stage
{
= 0, = 1, = 2, TOP款 = 3, = 4
}
/// <summary>
/// 电商平台 淘宝 = 0,京东 = 1,阿里巴巴 = 2,拼多多 = 3,微信 = 4,拳探 = 10
/// </summary>
public enum Platform
{
= 0,
= 1,
= 2,
= 3,
= 4,
= 10
}
2 years ago
/// <summary>
/// 订单状态
/// </summary>
public enum OrderState
{
= 0,
= 1,
= 2,
= 3,
= 4,
= 5,
= 6,
= 7,
退 = 8
}
2 years ago
}
}