using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { /// /// 赛鼎月报信息项 --10、项目奖惩情况统计 /// public class SeDinMonthReport10Item { /// /// ID /// public string MonthReport10Id { get; set; } /// /// 月报ID /// public string MonthReportId { get; set; } /// /// 安全工时奖次数(本月) /// public int? SafeMonthNum { get; set; } /// /// 安全工时奖次数(累计) /// public int? SafeTotalNum { get; set; } /// /// 安全工时奖金额(本月) /// public decimal? SafeMonthMoney { get; set; } /// /// 安全工时奖金额(累计) /// public decimal? SafeTotalMoney { get; set; } /// /// HSE绩效考核奖励次数(本月) /// public int? HseMonthNum { get; set; } /// /// HSE绩效考核奖励次数(累计) /// public int? HseTotalNum { get; set; } /// /// HSE绩效考核奖励金额(本月) /// public decimal? HseMonthMoney { get; set; } /// /// HSE绩效考核奖励金额(累计) /// public decimal? HseTotalMoney { get; set; } /// /// 安全生产先进个人奖次数(本月) /// public int? ProduceMonthNum { get; set; } /// /// 安全生产先进个人奖次数(累计) /// public int? ProduceTotalNum { get; set; } /// /// 安全生产先进个人奖金额(本月) /// public decimal? ProduceMonthMoney { get; set; } /// /// 安全生产先进个人奖金额(累计) /// public decimal? ProduceTotalMoney { get; set; } /// /// 事故责任处罚次数(本月) /// public int? AccidentMonthNum { get; set; } /// /// 事故责任处罚次数(累计) /// public int? AccidentTotalNum { get; set; } /// /// 事故责任处罚金额(本月) /// public decimal? AccidentMonthMoney { get; set; } /// /// 事故责任处罚金额(累计) /// public decimal? AccidentTotalMoney { get; set; } /// /// 违章处罚次数(本月) /// public int? ViolationMonthNum { get; set; } /// /// 违章处罚次数(累计) /// public int? ViolationTotalNum { get; set; } /// /// 违章处罚金额(本月) /// public decimal? ViolationMonthMoney { get; set; } /// /// 违章处罚金额(累计) /// public decimal? ViolationTotalMoney { get; set; } /// /// 安全管理处罚次数(本月) /// public int? ManageMonthNum { get; set; } /// /// 安全管理处罚次数(累计) /// public int? ManageTotalNum { get; set; } /// /// 安全管理处罚金额(本月) /// public decimal? ManageMonthMoney { get; set; } /// /// 安全管理处罚金额(累计) /// public decimal? ManageTotalMoney { get; set; } } }