GetPriceList.cs 542 B

123456789101112131415161718192021222324
  1. using JLHHJSvr.Com.Model;
  2. using LJLib.Net.SPI.Com;
  3. using System.Collections.Generic;
  4. namespace JLHHJSvr.Com
  5. {
  6. /// <summary>
  7. /// 获取用户自定义值
  8. /// </summary>
  9. public sealed class GetPriceListRequest : ILJRequest<GetPriceListResponse>
  10. {
  11. public string token { get; set; }
  12. public override string GetApiName()
  13. {
  14. return "GetPriceList";
  15. }
  16. }
  17. public sealed class GetPriceListResponse : LJResponse
  18. {
  19. public List<u_pricelist> list { get; set; }
  20. }
  21. }