using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MyCode.Project.Infrastructure.Enumeration { /// /// 会员资料增加来源 0= 其他; 1= 抖音; 2= 美团; 3=自然流量; 4=老顾客裂变 5=1元公益、派单 /// public enum AddFromTypeName { /// /// 其它 /// [Description("其它")] Other = 0, /// /// 抖音 /// [Description("抖音")] DouYin = 1, /// /// 美团 /// [Description("美团")] MeiTuan = 2, /// /// 自然流量 /// [Description("自然流量")] Nature = 3, /// /// 老顾客裂变 /// [Description("老顾客裂变")] OldMember = 4, /// /// 1元公益,派单 /// [Description("1元公益、派单")] Benefit = 5, /// /// 第三方合作 /// [Description("第三方合作")] ThirdPartyCooperation = 6 } }