using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Enums
{
    /// 
    /// 确认状态枚举
    /// 
    public enum AcknowledgeStatusEnum
    {
        /// 
        /// 未确认
        /// 
        NotAcknowledged = 0,
        /// 
        /// 已确认
        /// 
        Acknowledged = 1
    }
    /// 
    /// 确认方式枚举
    /// 
    public enum AcknowledgeTypeEnum
    {
        /// 
        /// Web确认
        /// 
        WebConfirm = 1,
        /// 
        /// APP确认
        /// 
        AppConfirm = 2,
        /// 
        /// 其他
        /// 
        Other = 3
    }
}