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 } /// /// 办学类别 /// public enum EnumUniversityType { /// /// 综合 /// [Description("综合")] Comprehensive = 0, /// /// 理工 /// [Description("理工")] Engineering = 1, /// /// 财经 /// [Description("财经")] Finance = 2, /// /// 农林 /// [Description("农林")] Farming = 3, /// /// 医药 /// [Description("医药")] Medical = 4, /// /// 师范 /// [Description("师范")] Normal = 5, /// /// 体育 /// [Description("体育")] Sports = 6, /// /// 省属 /// [Description("省属")] Provincial = 7, /// /// 政法 /// [Description("政法")] Politics = 8, /// /// 艺术 /// [Description("艺术")] Art = 9, /// /// 民族 /// [Description("民族")] Nation = 10, /// /// 军事 /// [Description("军事")] Military = 11, /// /// 语言 /// [Description("语言")] Language = 12, /// /// 其它 /// [Description("其它")] Other = 13, } /// /// 订单类型 /// 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 } }