DelPermitList.cs 564 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 DelPermitListRequest : ILJRequest<DelPermitListResponse>
  12. {
  13. public List<int> pidList { get; set; }
  14. public string token { get; set; }
  15. public override string GetApiName()
  16. {
  17. return "DelPermitList";
  18. }
  19. }
  20. public sealed class DelPermitListResponse : LJResponse
  21. {
  22. }
  23. }