RefreshMattressInterface.cs 874 B

1234567891011121314151617181920212223242526272829303132
  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 : ILJTokenRequest<RefreshMattressInterfaceResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "RefreshMattressInterface";
  14. }
  15. /// <summary>
  16. /// 单据id
  17. /// </summary>
  18. public int? mattressid { get; set; }
  19. public int? mattressid_fu { get; set; }
  20. /// <summary>
  21. /// 当前选择的分类id
  22. /// </summary>
  23. public int? configcodetype { get; set; }
  24. public byte? isPz { get; set; }
  25. }
  26. public sealed class RefreshMattressInterfaceResponse : LJResponse
  27. {
  28. public List<u_mattress_interface> mxList { get; set; }
  29. }
  30. }