using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class SpResourceCollection { /// /// 单位 /// public string UnitName { get; set; } /// /// 用户 /// public string UserName { get; set; } /// /// 总上传数量 /// public int TotalCount { get; set; } /// /// 总采用数量 /// public int TotalUsedCount { get; set; } /// /// 总采用率 /// public string TotalUsedRate { get; set; } /// /// 法律法规上传数量 /// public int LawRegulationCount { get; set; } /// /// 标准规范上传数量 /// public int HSSEStandardListCount { get; set; } /// /// 规章制度上传数量 /// public int RulesRegulationsCount { get; set; } /// /// 管理规定上传数量 /// public int ManageRuleCount { get; set; } /// /// 培训教材上传数量 /// public int TrainDBCount { get; set; } /// /// 安全试题库 /// public int TrainTestDBCount { get; set; } /// /// 事故案例库 /// public int AccidentCaseCount { get; set; } /// /// 应知应会库 /// public int KnowledgeDBCount { get; set; } /// /// 危险源上传数量 /// public int HazardListCount { get; set; } /// /// 安全隐患 /// public int RectifyCount { get; set; } /// /// HAZOP管理 /// public int HAZOPCount { get; set; } /// /// 安全评价 /// public int AppraiseCount { get; set; } /// /// 安全专家 /// public int ExpertCount { get; set; } /// /// 应急预案上传数量 /// public int EmergencyCount { get; set; } /// /// 专项方案上传数量 /// public int SpecialSchemeCount { get; set; } } }