GetPermitListQuery.cs 646 B

123456789101112131415161718192021222324252627
  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.APP
  8. {
  9. /// <summary>
  10. /// APP端:车牌号码查询
  11. /// </summary>
  12. public class GetPermitListQueryRequest : ILJRequest<GetPermitListQueryResponse>
  13. {
  14. public string GetApiName()
  15. {
  16. return "GetPermitListQuery";
  17. }
  18. public string token { get; set; }
  19. public string carnum { get; set; }
  20. }
  21. public class GetPermitListQueryResponse : LJResponse
  22. {
  23. public List<Permit> permitList { get; set; }
  24. }
  25. }