TakeGoodsWay.cs 900 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. //----------------------------------------------------------------
  6. //Module Name: $safeprojectname$
  7. //Purpose:
  8. //CopyRight: Muchinfo
  9. //History:
  10. //----------------------------------------------------------------
  11. //DateTime 2017/4/17 11:45:31
  12. //Author
  13. //Description Create
  14. //----------------------------------------------------------------
  15. using Muchinfo.MTPClient.Data.Helper;
  16. namespace Muchinfo.MTPClient.Data.Enums
  17. {
  18. /// <summary>
  19. /// 提货方式
  20. /// </summary>
  21. public enum TakeGoodsWay
  22. {
  23. /// <summary>
  24. /// 自提
  25. /// </summary>
  26. [ItemDisc("Delivery_TakeGoods_Self")]
  27. Self=1,
  28. /// <summary>
  29. /// 物流
  30. /// </summary>
  31. [ItemDisc("Delivery_TakeGoods_Express")]
  32. Express=2,
  33. }
  34. }