GetPriceList.cs 582 B

12345678910111213141516171819202122232425
  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 int? inuse { get; set; }
  13. public override string GetApiName()
  14. {
  15. return "GetPriceList";
  16. }
  17. }
  18. public sealed class GetPriceListResponse : LJResponse
  19. {
  20. public List<u_pricelist> list { get; set; }
  21. }
  22. }