37 lines
924 B
C#
37 lines
924 B
C#
|
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>
|
|||
|
/// 自定义页面类型
|
|||
|
/// </summary>
|
|||
|
public enum CustomPageType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 预约小程序使用权益
|
|||
|
/// </summary>
|
|||
|
[Description("预约小程序使用协议")]
|
|||
|
PreOrderAppletsUseEquity = 101,
|
|||
|
/// <summary>
|
|||
|
/// 会员权益
|
|||
|
/// </summary>
|
|||
|
[Description("会员权益")]
|
|||
|
MemberBenefits = 111,
|
|||
|
/// <summary>
|
|||
|
/// 智慧门店会员权益
|
|||
|
/// </summary>
|
|||
|
[Description("智慧门店会员权益")]
|
|||
|
StoreMemberBenefits = 121,
|
|||
|
/// <summary>
|
|||
|
/// 自定义
|
|||
|
/// </summary>
|
|||
|
[Description("自定义")]
|
|||
|
Others = 999999
|
|||
|
}
|
|||
|
}
|