| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Muchinfo.MTPClient.Data.Model.Delivery
- {
- /// <summary>
- /// 申报卖交割仓单信息
- /// </summary>
- public class WrDetailModel
- {
- public ulong AccountID { get; set; }
- public ulong Qty { get; set; }
- public uint BrandID { get; set; }
- public uint QualityID { get; set; }
- public uint StandardID { get; set; }
- public uint WarehouseID { get; set; }
- public uint DeliveryMonthID { get; set; }
- public uint WRPositionID { get; set; }
- }
- }
|