RefreshMattressInterface.cs 980 B

123456789101112131415161718192021222324252627282930313233343536
  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 RefreshMattressInterfaceRequest : ILJRequest<RefreshMattressInterfaceResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "RefreshMattressInterface";
  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. public int? mattressid_fu { get; set; }
  24. /// <summary>
  25. /// 当前选择的分类id
  26. /// </summary>
  27. public int? configcodetype { get; set; }
  28. public byte? isPz { get; set; }
  29. }
  30. public sealed class RefreshMattressInterfaceResponse : LJResponse
  31. {
  32. public List<u_mattress_interface> mxList { get; set; }
  33. }
  34. }