using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace NXWMS.Client.String.Enums { /// /// 发送标识 /// public enum SendFlag { [Description("已经发送")] Send = 0, [Description("未发送")] UnSend = 1, } }