| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Enums
- {
- /// <summary>
- /// 交割规则常量
- /// </summary>
- public enum DeliveryGoodsConts
- {
- /// <summary>
- /// 单笔最小交割数量
- /// </summary>
- MinDeliveryQty = 1801,
- /// <summary>
- /// 单笔最大交割数量
- /// </summary>
- MaxDeliveryQty = 1802,
- }
- }
|