mh_sms/APT.MS.Domain/Entities/SC/BI/T_BI_HRISK_COUNT.cs
2024-04-12 16:50:28 +08:00

59 lines
1.5 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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
{
/// <summary>
/// H=>Home各部门隐患数量
/// </summary>
[Description("各部门隐患数量")]
public class T_BI_HRISK_COUNT : MesEntityBase
{
/// <summary>
/// 年份
/// </summary>
[Description("年份")]
public int YEAR { get; set; }
/// <summary>
/// 生产单元
/// </summary>
[Description("生产单元")]
public FMProductionUnit? MINETYPE { get; set; }
/// <summary>
/// 部门层级
/// </summary>
[Description("部门层级")]
public FMDepartmentType DEPARTMENT_TYPE { get; set; }
/// <summary>
/// 部门ID
/// </summary>
[Description("部门ID")]
public Guid? DEPARTMENT_ID { get; set; }
/// <summary>
/// 部门名称
/// </summary>
[Description("部门名称")]
[DataFieldLength(200)]
public string DEPARTMENT_NAME { get; set; }
/// <summary>
/// 整改数
/// </summary>
[Description("整改数")]
public int COUNT_CHANGE { get; set; }
/// <summary>
/// 未整改数
/// </summary>
[Description("未整改数")]
public int COUNT_UNCHANGE { get; set; }
}
}