29 lines
550 B
C#
29 lines
550 B
C#
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
|
|
}
|
|
|
|
/// <summary>
|
|
/// 采集类型
|
|
/// </summary>
|
|
public enum GatherType
|
|
{
|
|
独家券商品 = 0,
|
|
每日爆品推荐 = 1,
|
|
各大榜单 = 2,
|
|
九块九包邮精选 = 3
|
|
}
|
|
}
|
|
}
|