WrDetailModel.cs 608 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Muchinfo.MTPClient.Data.Model.Delivery
  6. {
  7. /// <summary>
  8. /// 申报卖交割仓单信息
  9. /// </summary>
  10. public class WrDetailModel
  11. {
  12. public ulong AccountID { get; set; }
  13. public ulong Qty { get; set; }
  14. public uint BrandID { get; set; }
  15. public uint QualityID { get; set; }
  16. public uint StandardID { get; set; }
  17. public uint WarehouseID { get; set; }
  18. public uint DeliveryMonthID { get; set; }
  19. public uint WRPositionID { get; set; }
  20. }
  21. }