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 PaySheetType { /// /// 销售 /// [Description("销售")] Sales = 8010, /// /// 预售 /// [Description("预售")] PreSales = 8011, /// /// 充值 /// [Description("充值")] Recharge = 100 } }