using System; using System.Collections.Generic; using System.Linq; using System.Text; //---------------------------------------------------------------- //Module Name: $safeprojectname$ //Purpose: //CopyRight: Muchinfo //History: //---------------------------------------------------------------- //DateTime 2017/4/17 11:45:31 //Author //Description Create //---------------------------------------------------------------- using Muchinfo.MTPClient.Data.Helper; namespace Muchinfo.MTPClient.Data.Enums { /// /// 提货方式 /// public enum TakeGoodsWay { /// /// 自提 /// [ItemDisc("Delivery_TakeGoods_Self")] Self=1, /// /// 物流 /// [ItemDisc("Delivery_TakeGoods_Express")] Express=2, } }