26 lines
513 B
C#
26 lines
513 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace EncourageUser.Entitys
|
|||
|
{
|
|||
|
public enum UserType
|
|||
|
{
|
|||
|
新用户未查询过 = 0,
|
|||
|
新用户查询后未下单 = 1,
|
|||
|
长时间未购买的老客户 = 2,
|
|||
|
用户分组 = 3,
|
|||
|
所有用户 = 4,
|
|||
|
已下单用户 = 5,
|
|||
|
}
|
|||
|
|
|||
|
public enum ExecType
|
|||
|
{
|
|||
|
执行失效 = 0,
|
|||
|
未执行完毕 = 1,
|
|||
|
执行完毕 = 2
|
|||
|
}
|
|||
|
}
|