SavePermitList.cs 654 B

123456789101112131415161718192021222324252627
  1. using LJLib.Net.SPI.Com;
  2. using System.Collections.Generic;
  3. using JLHHJSvr.Com.Model;
  4. namespace JLHHJSvr.Com
  5. {
  6. /// <summary>
  7. /// 保存车位信息
  8. /// </summary>
  9. public sealed class SavePermitListRequest : ILJRequest<SavePermitListResponse>
  10. {
  11. public string token { get; set; }
  12. /// <summary>
  13. /// 车位信息
  14. /// </summary>
  15. public List<Permit> PermitList { get; set; }
  16. public string GetApiName()
  17. {
  18. return "SavePermitList";
  19. }
  20. }
  21. public sealed class SavePermitListResponse : LJResponse
  22. {
  23. public List<int> pidList { get; set; }
  24. }
  25. }