DelCarList.cs 545 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using LJLib.Net.SPI.Com;
  6. namespace JLHHJSvr.Com
  7. {
  8. /// <summary>
  9. /// 删除车辆信息
  10. /// </summary>
  11. public sealed class DelCarListRequest : ILJRequest<DelCarListResponse>
  12. {
  13. public string GetApiName()
  14. {
  15. return "DelCarList";
  16. }
  17. public string token { get; set; }
  18. public List<string> carnumList { get; set; }
  19. }
  20. public sealed class DelCarListResponse : LJResponse
  21. {
  22. }
  23. }