45 lines
933 B
C#
45 lines
933 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 ConsumptionSheetType
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 充值
|
|||
|
/// </summary>
|
|||
|
[Description("充值")]
|
|||
|
Recharge = 100,
|
|||
|
/// <summary>
|
|||
|
/// 销售
|
|||
|
/// </summary>
|
|||
|
[Description("销售")]
|
|||
|
Sales = 8010,
|
|||
|
/// <summary>
|
|||
|
/// 预售
|
|||
|
/// </summary>
|
|||
|
[Description("预售")]
|
|||
|
PreSale = 8011,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 调整
|
|||
|
/// </summary>
|
|||
|
[Description("调整")]
|
|||
|
Adjust = 200,
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 到期清零
|
|||
|
/// </summary>
|
|||
|
[Description("到期清零")]
|
|||
|
ClearMaturity = 300
|
|||
|
|
|||
|
}
|
|||
|
}
|