GetComputeMattress.cs 962 B

12345678910111213141516171819202122232425262728293031323334
  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 GetComputeMattressRequest : ILJRequest<GetComputeMattressResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "GetComputeMattress";
  14. }
  15. public string token { get; set; }
  16. /// <summary>
  17. /// 床垫信息:主表
  18. /// </summary>
  19. public u_mattress mattress { get; set; }
  20. /// <summary>
  21. /// 所有明细
  22. /// </summary>
  23. public List<u_mattress_mx_mtrl> mattressMx { get; set; }
  24. }
  25. public sealed class GetComputeMattressResponse : LJResponse
  26. {
  27. public u_mattress mattress { get; set; }
  28. public List<replacement> replace { get; set; }
  29. public List<replacement> formulas { get; set; }
  30. public string message { get; set; }
  31. }
  32. }