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.
97 lines
2.1 KiB
97 lines
2.1 KiB
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
|
|
}
|
|
|
|
/// <summary>
|
|
/// 仓储类型
|
|
/// </summary>
|
|
public enum StorageType
|
|
{
|
|
京仓 = 0,
|
|
云仓 = 1,
|
|
本地自发 = 2,
|
|
代发 = 3,
|
|
SD = 4
|
|
}
|
|
|
|
/// <summary>
|
|
/// 订单类型
|
|
/// </summary>
|
|
public enum OrderType
|
|
{
|
|
#region JD订单类型
|
|
SOP = 22,
|
|
LOC = 75,
|
|
FBP = 21
|
|
#endregion
|
|
}
|
|
|
|
/// <summary>
|
|
/// 支付方式
|
|
/// </summary>
|
|
public enum PayType
|
|
{
|
|
货到付款 = 1,
|
|
邮局汇款 = 2,
|
|
自提 = 3,
|
|
在线支付 = 4,
|
|
公司转账 = 5,
|
|
银行卡转账 = 6
|
|
}
|
|
|
|
/// <summary>
|
|
/// 订单状态
|
|
/// </summary>
|
|
public enum OrderState
|
|
{
|
|
待付款 = 0,
|
|
等待采购 = 1,
|
|
待出库 = 2,
|
|
待收货 = 3,
|
|
已完成 = 4,
|
|
锁定 = 5,
|
|
已取消 = 6,
|
|
暂停 = 7,
|
|
已退款 = 8
|
|
}
|
|
|
|
public enum PayChannelType
|
|
{
|
|
支付宝 = 0,
|
|
微信 = 1,
|
|
银行卡 = 2
|
|
}
|
|
|
|
/// <summary>
|
|
/// 刷单类型
|
|
/// </summary>
|
|
public enum SDType
|
|
{
|
|
自刷 = 0,
|
|
其他 = 1,
|
|
京礼金 = 2,
|
|
刷单组 = 3
|
|
}
|
|
}
|
|
}
|
|
|