GetMattressInterfaceList.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 GetMattressInterfaceListRequest : ILJRequest<GetMattressInterfaceListResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "GetMattressInterfaceList";
  14. }
  15. /// <summary>
  16. /// 登录token
  17. /// </summary>
  18. public string token { get; set; }
  19. /// <summary>
  20. /// 单据id
  21. /// </summary>
  22. public int? mattressid { get; set; }
  23. /// <summary>
  24. /// 单据编码
  25. /// </summary>
  26. public int? mattresscode { get; set; }
  27. public int? isEdit { get; set; }
  28. }
  29. public sealed class GetMattressInterfaceListResponse : LJResponse
  30. {
  31. public u_mattress mattress { get; set; }
  32. public List<u_mattress_interface> interfaceList { get; set; }
  33. public List<u_mattress_interface_qd> qdList { get; set; }
  34. }
  35. }