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_HRISKCHANGE_PEC : MesEntityBase
{
///
/// 年份
///
[Description("年份")]
public int YEAR { get; set; }
///
/// 月份
///
[Description("月份")]
public int MONTH { get; set; }
///
/// 年月(2023年9月)
///
[Description("年月")]
[DataFieldLength(50)]
public string YEARMONTH { 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; }
///
/// 整改率 95.10
///
[Description("整改率")]
public decimal CHANGE_PERCENT { get; set; }
///
/// 整改率 95.10%
///
[Description("整改率")]
[DataFieldLength(50)]
public string CHANGE_PERCENT_SHOW { get; set; }
///
/// 数量
///
[Description("数量")]
public int COUNT { get; set; }
///
/// 已处理数量
///
[Description("已处理数量")]
public int COUNT_DEL { get; set; }
}
}