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