GetMattressPackagMx.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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 GetMattressPackagMxRequest : ILJRequest<GetMattressPackagMxResponse>
  10. {
  11. public string GetApiName()
  12. {
  13. return "GetMattressPackagMx";
  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. public int pricelistid { get; set; }
  26. }
  27. public sealed class GetMattressPackagMxResponse : LJResponse
  28. {
  29. public decimal? biandai_qty { get; set; }
  30. /// <summary>
  31. /// 所有明细
  32. /// </summary>
  33. public List<u_mattress_mx_mtrl> mattressMx { get; set; }
  34. public List<replacement> diancengarea { get; set; }
  35. }
  36. }