2025-04-24 18:31:27 +08:00

59 lines
1.3 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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