85 lines
1.5 KiB
C#
85 lines
1.5 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.ComponentModel;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Infrastructure.Enumeration
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 优惠券的状态
|
|||
|
/// </summary>
|
|||
|
public enum CouponFlag
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 新建
|
|||
|
/// </summary>
|
|||
|
[Description("新建")]
|
|||
|
Create = 0,
|
|||
|
|
|||
|
|
|||
|
//10=进行中;100=结束;95=删除。
|
|||
|
/// <summary>
|
|||
|
/// 挂单
|
|||
|
/// </summary>
|
|||
|
[Description("进行中")]
|
|||
|
Running = 10,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 结束
|
|||
|
/// </summary>
|
|||
|
[Description("结束")]
|
|||
|
Over = 100,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 删除
|
|||
|
/// </summary>
|
|||
|
[Description("删除")]
|
|||
|
Delete = 95,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 已领完
|
|||
|
/// </summary>
|
|||
|
[Description("已领完")]
|
|||
|
TookOver = 101
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 1=直营;2=联营;3=加盟。
|
|||
|
/// </summary>
|
|||
|
public enum ShopKind
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 直营
|
|||
|
/// </summary>
|
|||
|
[Description("直营")]
|
|||
|
ZhiYing = 1,
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 联营
|
|||
|
/// </summary>
|
|||
|
[Description("联营")]
|
|||
|
LianYing = 2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 加盟
|
|||
|
/// </summary>
|
|||
|
[Description("加盟")]
|
|||
|
JiaMeng = 3,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 员工内购
|
|||
|
/// </summary>
|
|||
|
[Description("员工内购")]
|
|||
|
InternalPurchase = 4,
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|