195 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			195 lines
		
	
	
		
			3.7 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     /// <summary> | |||
|  |     /// 安全管理工作总结报告 | |||
|  |     /// </summary> | |||
|  |     public class WorkSummaryReport | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         /// 主键 | |||
|  |         /// </summary> | |||
|  |         public string WorkSummaryReportId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 单位ID | |||
|  |         /// </summary> | |||
|  |         public string UnitId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 年份 | |||
|  |         /// </summary> | |||
|  |         public int? YearId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 负责人 | |||
|  |         /// </summary> | |||
|  |         public string ResponsiblePerson | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 负责人电话 | |||
|  |         /// </summary> | |||
|  |         public string ResponsiblePersonTel | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 联系人 | |||
|  |         /// </summary> | |||
|  |         public string ContactPerson | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 联系人电话 | |||
|  |         /// </summary> | |||
|  |         public string ContactPersonTel | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 报告日期 | |||
|  |         /// </summary> | |||
|  |         public DateTime? ReportDate | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 人工时 | |||
|  |         /// </summary> | |||
|  |         public decimal? SafeLaborTime | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 安全目标及完成情况(按责任书相应内容进行总结) | |||
|  |         /// </summary> | |||
|  |         public string SafetyObjectives | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 安全事故情况 | |||
|  |         /// </summary> | |||
|  |         public string AccidentSituation | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 获奖情况 | |||
|  |         /// </summary> | |||
|  |         public string Awards | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 安全生产重点工作开展情况 | |||
|  |         /// </summary> | |||
|  |         public string WorkDevelopment | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 人员培训情况 | |||
|  |         /// </summary> | |||
|  |         public string PersonnelTraining | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 组织开展安全监督检查、隐患排查治理情况 | |||
|  |         /// </summary> | |||
|  |         public string GovernanceSituation | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 安全月、职业健康宣传周等其他管理活动情况 | |||
|  |         /// </summary> | |||
|  |         public string ManagementActivity | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 主要工作经验及亮点 | |||
|  |         /// </summary> | |||
|  |         public string WorkExperience | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 主要问题及应对措施 | |||
|  |         /// </summary> | |||
|  |         public string Countermeasures | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 下一年度工作计划打算 | |||
|  |         /// </summary> | |||
|  |         public string NextYearWorkPlan | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 对集团公司的工作建议 | |||
|  |         /// </summary> | |||
|  |         public string JobSuggestion | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | } |