using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace APT.MS.Domain.Enums { ///// ///// 安全生产费用使用记录状态 ///// //public enum TISafePdtCostRecordStatus //{ // 草稿 = 0, // 审阅中 = 1, // 审阅完成 = 2, //} /// /// 安全生产费用使用记录状态 /// public enum TIProjectResult { /// /// 通过 10 /// [Description("通过")] Through = 10, /// /// 不通过 20 /// [Description("不通过")] NotThrough = 20, } public enum TIInsuranceTypeEnum { /// /// 安全生产责任险 10 /// [Description("安全生产责任险")] SafeProdIns = 10, /// /// 工伤保险 20 /// [Description("工伤保险")] InductrialIns = 20, /// /// 养老保险 30 /// [Description("养老保险")] EndowmentIns = 30, /// /// 医疗保险 40 /// [Description("医疗保险")] MedicalIns = 40, /// /// 失业保险 50 /// [Description("失业保险")] JobLoseIns = 50, /// /// 生育保险 60 /// [Description("生育保险")] BirthIns = 60, /// /// 团体意外险 70 /// [Description("团体意外险")] GroupIns = 70 } //public enum TIInsuranceRecordStatusEnum //{ // 草稿 = 0, // 完成 = 1, //} //public enum TIInsuranceClaimRecordStatusEnum //{ // 草稿 = 0, // 完成 = 1, //} //public enum TIInHospitalEnum //{ // 否 = 0, // 是 = 1, //} public enum TIInsuranceStatusEnum { /// /// 正常 10 /// [Description("正常")] normal =10, /// /// 停缴 20 /// [Description("停缴")] StopPaying = 20, } public enum TIDisabilityLevelEnum { ///// ///// 无 0 ///// //[Description("无")] //None = 0, /// /// 一级 1 /// [Description("一级")] One = 1, /// /// 二级 2 /// [Description("二级")] Two = 2, /// /// 三级 3 /// [Description("三级")] Three = 3, /// /// 四级 4 /// [Description("四级")] Four = 4, /// /// 五级 5 /// [Description("五级")] Five = 5, /// /// 六级 6 /// [Description("六级")] Six = 6, /// /// 七级 7 /// [Description("七级")] Seven = 7, /// /// 八级 8 /// [Description("八级")] Eight = 8, /// /// 九级 9 /// [Description("九级")] Nine = 9, /// /// 十级 10 /// [Description("十级")] Ten = 10, } }