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