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 SalesServiceSetType { /// /// 销售表 /// [Description("销售表")] Sales = 1, /// /// 预售 /// [Description("销售表")] PreSales = 2, } /// /// 套餐类型 1 服务套餐 2 自定义服务套餐 3 自定义商品套餐 /// public enum ServiceSetType { /// /// 服务套餐 /// [Description("服务套餐")] ServiceSet = 1, /// /// 自定义服务套餐 /// [Description("自定义服务套餐")] CustomServiceSet = 2, /// /// 自定义商品套餐 /// [Description("自定义商品套餐")] CustomGoodsSet = 3, } }