using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CouponsSend.Entitys { public class Enum { public enum StateType { 已推广 = 0, 未推广 = 1 } /// /// 采集类型 /// public enum GatherType { 独家券商品 = 0, 每日爆品推荐 = 1, 各大榜单 = 2, 九块九包邮精选 = 3 } } }