using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LearningOfficer.OA.Common.Enums
{
///
/// 备 注:状态(默认0未确认、1已采纳、2不采纳、3重复建议)
/// 默认值:
///
public enum FeedBackInfoStatusEnum
{
///
/// 未确认
///
[EnumDescription("未确认")]
Unconfirmed = 0,
///
/// 已采纳
///
[EnumDescription("已采纳")]
Accepted = 1,
///
/// 不采纳
///
[EnumDescription("不采纳")]
NotAdopted = 2,
///
/// 重复建议
///
[EnumDescription("重复建议")]
RepeatedSuggestion = 3
}
}