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
{
///
/// 班组安全检查完成率分析
///
[Description("班组安全检查完成率分析")]
public class T_BI_BSSAFECHECK : MesEntityBase
{
///
/// 时间类型
///
[Description("时间类型")]
public FilterTimeType TimeType { get; set; }
///
/// 生产单元类型
///
[Description("生产单元类型")]
public BSMineTypeEditEnum MineType { get; set; }
///
/// 班组ID
///
[Description("班组ID")]
public Guid TEAMID { get; set; }
///
/// 班组名称
///
[Description("班组名称")]
public string TEAMNAME { get; set; }
///
/// 计划检查数
///
[Description("计划检查数")]
public int COUNTPLAN { get; set; }
///
/// 实际检查数
///
[Description("实际检查数")]
public int COUNTCHECK { get; set; }
///
/// 检查数(超时完成)
///
[Description("检查数")]
public int COUNTCHECKOUTTIME { get; set; }
///
/// 完成率(带百分号)
///
[Description("完成率")]
public string PERCENTCHECK { get; set; }
}
}