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