using APT.BaseData.Domain.Enums; using APT.Infrastructure.Core; using APT.MS.Domain.Enums; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using static APT.MS.Domain.Enums.BI.BIEnums; namespace APT.MS.Domain.Entities.BI { /// /// 年度安全检查情况综合统计分析(检查层级) /// (二)公司级 1表 /// [Description("年度安全检查情况综合统计分析")] public class T_BI_BSSAFECHECK_YEAR : MesEntityBase { /// /// 生产单元类型 /// [Description("生产单元类型")] public BSMineTypeEnum MineType { get; set; } /// /// 年度 /// [Description("年度")] public int YEAR { get; set; } /// /// 检查层级 /// [Description("检查层级")] public FMDepartmentType LEVEL { get; set; } /// /// 班组名称 /// [Description("检查层级")] public string NAME { get; set; } /// /// 序号 /// [Description("序号")] public int ROW_NO { get; set; } /// /// 数量 一月 /// [Description("数量 一月")] public int? COUNTJANUARY { get; set; } /// /// 数量 一月 /// [Description("数量 二月")] public int? COUNTFEBRUARY { get; set; } /// /// 数量 三月 /// [Description("数量 三月")] public int? COUNTMARCH { get; set; } /// /// 数量 四月 /// [Description("数量 四月")] public int? COUNTAPRIL { get; set; } /// /// 数量 五月 /// [Description("数量 五月")] public int? COUNTMAY { get; set; } /// /// 数量 六月 /// [Description("数量 六月")] public int? COUNTJUNE { get; set; } /// /// 数量 七月 /// [Description("数量 七月")] public int? COUNTJULY { get; set; } /// /// 数量 八月 /// [Description("数量 八月")] public int? COUNTAUGUST { get; set; } /// /// 数量 九月 /// [Description("数量 九月")] public int? COUNTSEPTEMBER { get; set; } /// /// 数量 十月 /// [Description("数量 十月")] public int? COUNTOCTOBER { get; set; } /// /// 数量 十一月 /// [Description("数量 十一月")] public int? COUNTNOVEMBER { get; set; } /// /// 数量 十二月 /// [Description("数量 十二月")] public int? COUNTDECEMBER { get; set; } /// /// 数量 合计 /// [Description("数量 合计")] public int? COUNTTOTAL { get; set; } } }