GetOptionList.cs 676 B

12345678910111213141516171819202122232425262728
  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 GetOptionListRequest:ILJRequest<GetOptionListResponse>
  13. {
  14. public string GetApiName()
  15. {
  16. return "GetOptionList";
  17. }
  18. public string token { get; set; }
  19. public List<int> optionidList { get; set; }
  20. public int? optionid { get; set; }
  21. }
  22. public sealed class GetOptionListResponse : LJResponse
  23. {
  24. public List<Option> optionList { get; set; }
  25. }
  26. }