GetMattressImportDW2.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using JLHHJSvr.Com.Model;
  6. using LJLib.Net.SPI.Com;
  7. namespace JLHHJSvr.Com
  8. {
  9. public sealed class GetMattressImportDW2Request : ILJRequest<GetMattressImportDW2Response>
  10. {
  11. public string GetApiName()
  12. {
  13. return "GetMattressImportDW2";
  14. }
  15. public string token { get; set; }
  16. public int mattresstypeid { get; set; }
  17. /// <summary>
  18. /// 是否为半成品
  19. /// </summary>
  20. public int ifbcptype { get; set; }
  21. /// <summary>
  22. /// 包装方式 tinyint 选择 0-压包,1-卷包,2-国内
  23. /// </summary>
  24. public int packtype { get; set; }
  25. }
  26. public sealed class GetMattressImportDW2Response : LJResponse
  27. {
  28. public decimal? biandai_qty { get; set; }
  29. /// <summary>
  30. /// 所有明细
  31. /// </summary>
  32. public List<u_mattress_mx_mtrl> mattressMx { get; set; }
  33. public List<replacement> diancengarea { get; set; }
  34. }
  35. }