DelMattress.cs 545 B

12345678910111213141516171819202122232425
  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. /// <summary>
  10. /// 保存车辆信息
  11. /// </summary>
  12. public sealed class DelMattressRequest : ILJTokenRequest<DelMattressResponse>
  13. {
  14. public override string GetApiName()
  15. {
  16. return "DelMattress";
  17. }
  18. public List<int> mattressids { get; set; }
  19. }
  20. public sealed class DelMattressResponse : LJResponse
  21. {
  22. }
  23. }