using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pcb.Common
{
///
/// 数据来源
///
public enum EnumDataSource
{
///
/// Web-PC端
///
[NoteAttribute("Web-PC端")]
WebPc = 1,
///
/// 微信订阅号
///
[NoteAttribute("微信订阅号")]
WeChatSub = 2,
///
/// 微信服务号
///
[NoteAttribute("微信服务号")]
WeChatService = 3,
///
/// 电话委托
///
[NoteAttribute("电话委托")]
Call = 6,
///
/// 微信企业号
///
[NoteAttribute("微信企业号")]
WeChatEnterprise = 7,
///
/// PC 后台
///
[NoteAttribute("Web-PC管理后台")]
WebPcAdmin = 10 ,
///
/// ALLPCB
///
[NoteAttribute("Web-ALLPCB")]
WebAllPcb = 11,
///
/// 捷客站点
///
[NoteAttribute("捷客站点")]
WebJieke = 12,
///
/// 拼团砍价
///
[NoteAttribute("拼团砍价")]
PinTuan = 13,
///
/// 协同外部订单录入
///
[NoteAttribute("外部订单")]
OutCustomerOrder = 15,
}
}