using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SWS.Share
{
public enum WireGroupStatusEnum
{
///
/// 待删除
///
[Description("待删除")]
ToDelete = 01,
///
/// 新增的
///
[Description("新增的")]
New = 02,
///
/// 已关联
///
[Description("已使用(关联)")]
Used = 03,
///
/// 已审核
///
[Description("已确认(审核)")]
Confirmed = 04,
///
/// 重新打开
///
[Description("重新打开")]
Reopen = 05,
///
/// 彻底删除
///
[Description("彻底删除")]
deleted = 06
}
}