| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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
- {
- /// <summary>
- /// 提货方式
- /// </summary>
- public enum TakeGoodsWay
- {
- /// <summary>
- /// 自提
- /// </summary>
- [ItemDisc("Delivery_TakeGoods_Self")]
- Self=1,
-
- /// <summary>
- /// 物流
- /// </summary>
- [ItemDisc("Delivery_TakeGoods_Express")]
- Express=2,
- }
- }
|