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.
27 lines
670 B
27 lines
670 B
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
|
||
|
}
|
||
|
}
|
||
|
}
|