using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 赛鼎月报信息项 --6、安全生产费用投入情况 /// public class SeDinMonthReport6Item { /// /// ID /// public string MonthReport6Id { get; set; } /// /// 月报ID /// public string MonthReportId { get; set; } /// /// 安全防护投入-月 /// public decimal? SafetyMonth { get; set; } /// /// 安全防护投入-年 /// public decimal? SafetyYear { get; set; } /// /// 安全防护投入-总 /// public decimal? SafetyTotal { get; set; } /// /// 劳动保护及职业健康投入-月 /// public decimal? LaborMonth { get; set; } /// /// 劳动保护及职业健康投入-年 /// public decimal? LaborYear { get; set; } /// /// 劳动保护及职业健康投入-总 /// public decimal? LaborTotal { get; set; } /// /// 安全技术进步投入-月 /// public decimal? ProgressMonth { get; set; } /// /// 安全技术进步投入-年 /// public decimal? ProgressYear { get; set; } /// /// 安全技术进步投入-总 /// public decimal? ProgressTotal { get; set; } /// /// 安全教育培训投入-月 /// public decimal? EducationMonth { get; set; } /// /// 安全教育培训投入-年 /// public decimal? EducationYear { get; set; } /// /// 安全教育培训投入-总 /// public decimal? EducationTotal { get; set; } /// /// 合计-月 /// public decimal? SumMonth { get; set; } /// /// 合计-年 /// public decimal? SumYear { get; set; } /// /// 合计-总 /// public decimal? SumTotal { get; set; } /// /// 完成合同额-月 /// public decimal? ContractMonth { get; set; } /// /// 完成合同额-年度 /// public decimal? ContractYear { get; set; } /// /// 完成合同额-累计 /// public decimal? ContractTotal { get; set; } /// /// 工程造价占比 /// public decimal? ConstructionCost { get; set; } } }