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 MemberAccountSheetType { /// /// 充值 /// [Description("充值")] Recharge = 100, /// /// 补录 /// [Description("补录")] BuLu = 200, /// /// 调整 /// [Description("调整")] Adjustment = 300, /// /// 消费 /// [Description("消费")] Sales = 8010, } }