using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace New_College.Common { public enum CustomerTypeEnum { /// /// 普通用户 /// [Description("普通用户")] General = 0, /// /// 个人代理(专家) /// [Description("个人代理")] PersonalAgency = 1, /// /// 机构代理 /// [Description("机构代理")] Agency = 2 } /// /// 卡类型 /// public enum CardTypeEnum { /// /// 志愿填报卡 /// [Description("志愿填报卡")] volunteerCard = 0, /// /// 选科指导卡 /// [Description("选科指导卡")] selectSubjectGuideCard = 1, /// /// 生涯发展卡 /// [Description("生涯发展卡")] development = 2 } /// /// 办学层次 /// public enum EnumSchoolLevel { /// /// 本科 /// RegularCollegeCourse = 1, /// /// 专科 /// Specialist = 2 } /// /// 办学类别0综合,1理工类,2医学类|3军事类|4语言类|5师范类|6财经类|7政法类|8民族类|9农林类|10艺术类|11体育类|12其他 /// public enum EnumUniversityType { /// /// 综合 /// [Description("综合")] Comprehensive = 0, /// /// 理工 /// [Description("理工")] Engineering = 1, /// /// 医药 /// [Description("医学")] Medical = 2, /// /// 军事 /// [Description("军事")] Military = 3, /// /// 语言 /// [Description("语言")] Language = 4, /// /// 师范 /// [Description("师范")] Normal = 5, /// /// 财经 /// [Description("财经")] Finance = 6, /// /// 政法 /// [Description("政法")] Politics = 7, /// /// 民族 /// [Description("民族")] Nation = 8, /// /// 农林 /// [Description("农林")] Farming = 9, /// /// 艺术 /// [Description("艺术")] Art = 10, /// /// 体育 /// [Description("体育")] Sports = 11, /// /// 其它 /// [Description("其它")] Other = 12, } /// /// 订单类型 /// public enum EnumOrderType { /// ///取消订单 /// [Description("取消")] Cancel = -1, /// /// 待支付 /// [Description("待支付")] payment = 0, /// /// 支付完成 /// [Description("支付完成")] payoff = 1, /// /// 已发货 /// [Description("已发货")] Delivered = 2, /// /// 已收货 /// [Description("已收货")] Received = 3 } /// /// 支付方式 /// public enum EnumPayType { /// /// 微信 /// [Description("微信")] WeiPay = 0, /// /// 支付宝 /// [Description("支付宝")] AliPay = 1, /// /// IOS支付 /// [Description("IOS支付")] IOSPay = 2 } public enum EnumTagColor { [Description("深蓝")] a = 0, [Description("中等蓝")] b = 1, [Description("浅蓝")] c = 2, [Description("淡蓝")] d = 3 } }