DeliveryGoodsConts.cs 471 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Enums
  6. {
  7. /// <summary>
  8. /// 交割规则常量
  9. /// </summary>
  10. public enum DeliveryGoodsConts
  11. {
  12. /// <summary>
  13. /// 单笔最小交割数量
  14. /// </summary>
  15. MinDeliveryQty = 1801,
  16. /// <summary>
  17. /// 单笔最大交割数量
  18. /// </summary>
  19. MaxDeliveryQty = 1802,
  20. }
  21. }