2025-03-28 09:49:56 +08:00

119 lines
3.0 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.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EShang.Common
{
public class MemberEnum
{
public enum MemberPointType
{
= 1000,
= 2000,
= 3000,
= 4000,
= 5000,
= 6000,
/// <summary>
/// 那美营销
/// </summary>
= 7000,
/// <summary>
/// 万佳营销
/// </summary>
= 7001,
}
public enum MemberPayType
{
= 3050,
= 3060,
= 3000
}
/// <summary>
/// 余额变化类型
/// </summary>
public enum BalanceChangeType
{
= 2000,
退 = 2010,
= 3000,
= 3010,
线 = 3020,
驿 = 3030,
= 3040,
= 3050,
= 3000
}
/// <summary>
/// 消费类型
/// </summary>
public enum ConsumeType
{
= 1000,
= 3000,
= 6000
}
/// <summary>
/// 消费记录状态
/// </summary>
public enum ConsumptionrecordState
{
= 1005,
= 1010,
= 3000,
= 9999
}
/// <summary>
/// 用户行为类型枚举
/// </summary>
public enum BehaviorType
{
= 1000,
= 1001,
= 1002,
= 2000,
= 2001,
= 2002,
= 2003,
= 2004,
= 3000,
= 3001,
= 3002
}
/// <summary>
/// 优惠券状态0未使用1已使用2失效
/// </summary>
public enum CouponState
{
使 = 0,
使 = 1,
= 2
}
/// 消费模式【1000直接领取2000积分兑换】
public enum CouponPayMethod
{
= 1000,
= 2000
}
//用户行为记录访问渠道(微信点击进入【默认不做记录】、扫码、推送消息、公众号菜单、分享进入)
public enum visitChannels
{
= 1000,
= 2000,
= 3000,
= 4000,
= 5000
}
}
}