using Muchinfo.MTPClient.Data.Helper; using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Muchinfo.MTPClient.Data.Enums { /// /// 【审核通过的】交割单状态:“待确认”及“已完成”两种状态 /// public enum eDoneDeliveryOrderStatus { /// /// 待确认 /// [ItemDisc("eDoneDeliveryOrderStatus_Pending")] Pending = 1, /// /// 已完成 /// [ItemDisc("eDoneDeliveryOrderStatus_Finish")] Finish = 2, } }