using APT.BaseData.Domain.Enums; using APT.Infrastructure.Core; using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace APT.MS.Domain.Entities.BI { /// /// (H=>Home)各部门隐患数量 /// [Description("各部门隐患数量")] public class T_BI_HRISK_COUNT : MesEntityBase { /// /// 年份 /// [Description("年份")] public int YEAR { get; set; } /// /// 生产单元 /// [Description("生产单元")] public FMProductionUnit? MINETYPE { get; set; } /// /// 部门层级 /// [Description("部门层级")] public FMDepartmentType DEPARTMENT_TYPE { get; set; } /// /// 部门ID /// [Description("部门ID")] public Guid? DEPARTMENT_ID { get; set; } /// /// 部门名称 /// [Description("部门名称")] [DataFieldLength(200)] public string DEPARTMENT_NAME { get; set; } /// /// 整改数 /// [Description("整改数")] public int COUNT_CHANGE { get; set; } /// /// 未整改数 /// [Description("未整改数")] public int COUNT_UNCHANGE { get; set; } } }