GetMattressSubspecs.cs 958 B

1234567891011121314151617181920212223242526272829303132333435
  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 GetMattressSubspecsRequest : ILJRequest<GetMattressSubspecsResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "GetMattressSubspecs";
  14. }
  15. public string token { get; set; }
  16. public int mattressid { get; set; }
  17. }
  18. public sealed class GetMattressSubspecsResponse : LJResponse
  19. {
  20. /// <summary>
  21. /// 副规格列表
  22. /// </summary>
  23. public List<u_mattress> mattresses { get; set; }
  24. /// <summary>
  25. /// 床网列表弹簧排列列表
  26. /// </summary>
  27. public List<u_mattress_mx_mtrl> bednetMxs { get; set; }
  28. /// <summary>
  29. /// 垫层物料
  30. /// </summary>
  31. public List<u_mattress_mx_mtrl> mtrllist { get; set; }
  32. }
  33. }