using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace APT.MS.Domain.Enums
{
    /// 
    /// 数类型
    /// 
    public enum BSCaculateType
    {
        /// 
        /// 隐患原因 数量 1  CaculateRiskReason
        /// 
        [Description("隐患原因")]
        RiskReason = 1,
        /// 
        /// 隐患整改情况 5  RiskCorrect
        /// BSCorrectType 
        /// 
        [Description("隐患整改情况")]
        RiskCorrect = 5,
        /// 
        /// 月度安全检查数量 10 
        /// 
        [Description("月度安全检查数量")]
        SafeCheck = 10,
    }
    /// 
    /// 整改类型
    /// 
    public enum BSCorrectType
    {
        /// 
        /// 按时整改隐患 5
        /// 
        [Description("按时整改隐患")]
        inTime = 5,
        /// 
        /// 超期整改隐患 10
        /// 
        [Description("超期整改隐患")]
        outTime = 10,
        /// 
        /// 未整改隐患 15
        /// 
        [Description("未整改隐患")]
        noCorrect = 15,
        /// 
        /// 隐患整改率 20
        /// 
        [Description("隐患整改率")]
        CorrectPercent = 20
    }
}