RefreshMattressInterfaceQd.cs 750 B

12345678910111213141516171819202122232425262728
  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 RefreshMattressInterfaceQdRequest : ILJTokenRequest<RefreshMattressInterfaceQdResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "RefreshMattressInterfaceQd";
  14. }
  15. /// <summary>
  16. /// 单据id
  17. /// </summary>
  18. public int? mattressid { get; set; }
  19. public byte? isPz { get; set; }
  20. public byte? isCheck { get; set; }
  21. }
  22. public sealed class RefreshMattressInterfaceQdResponse : LJResponse
  23. {
  24. public List<u_mattress_interface_qd> mxList { get; set; }
  25. }
  26. }