45 lines
842 B
C#
45 lines
842 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
|
|||
|
{
|
|||
|
public enum MemberExpensesType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 销售
|
|||
|
/// </summary>
|
|||
|
[Description("销售")]
|
|||
|
Sales = 1,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 预售
|
|||
|
/// </summary>
|
|||
|
[Description("预售")]
|
|||
|
PreSales = 2,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 充值
|
|||
|
/// </summary>
|
|||
|
[Description("充值")]
|
|||
|
Recharge = 3,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 退货
|
|||
|
/// </summary>
|
|||
|
[Description("退货")]
|
|||
|
Return = 4,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 服务
|
|||
|
/// </summary>
|
|||
|
[Description("服务")]
|
|||
|
Service = 5,
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|