using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 提单管理动作枚举 /// public enum BLIssueActionEnum { /// /// 签入 /// [Description("签入")] CheckIn, /// /// 签出 /// [Description("签出")] CheckOut, /// /// 取消签入 /// [Description("取消签入")] CheckInCancel, /// /// 取消签出 /// [Description("取消签出")] CheckOutCancel, /// /// 船证签入 /// [Description("签入")] ShipCertCheckIn, /// /// 船证签出 /// [Description("船证签出")] ShipCertCheckOut, /// /// 取消船证签入 /// [Description("取消船证签入")] ShipCertCheckInCancel, /// /// 取消船证签出 /// [Description("取消船证签出")] ShipCertCheckOutCancel, /// /// 换签(背书) /// [Description("换签(背书)")] ChangeEndorse, /// /// 船证签出 /// [Description("取消换签(背书)")] ChangeEndorseCancel, /// /// 驳回放单通知 /// [Description("驳回放单通知")] RejectReleaeNotice, /// /// 更改提单 /// [Description("更改提单")] BLModify, /// /// 状态更改 /// [Description("状态更改")] StatusModify, } }