using System; using System.Collections.Generic; using System.Linq; using System.Text; using Muchinfo.MTPClient.Data.Helper; namespace Muchinfo.MTPClient.Data.Enums { /// /// 交割-交割商品状态 /// public enum eDeliveryGoodsStatus { /// /// 待激活 /// [ItemDisc("eDeliveryGoodsStatus_Inactive")] Inactive = 0, /// /// 正常 /// [ItemDisc("eDeliveryGoodsStatus_Normal")] Normal = 1, /// /// 已注销 /// [ItemDisc("eDeliveryGoodsStatus_Canceled")] Canceled = 2, } }