using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LifePayment.Domain.Shared
{
public enum LifePayChannelConsultationFollowupStatus
{
///
/// 未回访
///
[Description("未回访")]
None = 1,
///
/// 跟进中
///
[Description("跟进中")]
Ing = 2,
///
/// 已拒绝
///
[Description("已拒绝")]
Refuse = 3,
///
/// 已开通
///
[Description("已开通")]
Open = 4,
}
}