using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 操作类型枚举 /// public enum OperateTypeEnum { /// /// 保存 /// [Description("保存")] Save, /// /// 提交 /// [Description("提交")] Submit, /// /// 取消 /// [Description("取消")] Cancel, /// /// 删除 /// [Description("删除")] Delete, /// /// 派车 /// [Description("派车")] SendDispatch, /// /// 取消派车 /// [Description("取消派车")] CancelDispatch, /// /// 派车回写详情 /// [Description("派车回写详情")] DispatchBackSave, /// /// 设定启用 /// [Description("设定启用")] SetEnable, /// /// 设定不启用 /// [Description("设定不启用")] SetUnEnable } }