You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

30 lines
716 B

using System.ComponentModel;
namespace Znyc.Cloudcar.Admin.Commons.Enums
{
/// <summary>
/// 通话评价状态枚举
/// </summary>
public enum CallFeedbackStatusEnum
{
/// <summary>
/// 真实有效
/// </summary>
[Description("真实有效")] Real = 1,
/// <summary>
/// 已经找到
/// </summary>
[Description("已经找到")] Found = 2,
/// <summary>
/// 联系不上
/// </summary>
[Description("联系不上")] ContactFail = 3,
/// <summary>
/// 虚假信息
/// </summary>
[Description("虚假信息")] FalseInformation = 4
}
}