GetErpMtrlPriceList.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. public sealed class GetErpMtrlPriceListRequest : ILJRequest<GetErpMtrlPriceListResponse>
  10. {
  11. /// <summary>
  12. /// 登录token
  13. /// </summary>
  14. public string token { get; set; }
  15. /// <summary>
  16. /// 物料类别
  17. /// </summary>
  18. public int? mtrltypeid { get; set; }
  19. public string keyword { get; set; }
  20. public string mtrlname { get; set; }
  21. public string mtrlcode { get; set; }
  22. public string mtrlmode { get; set; }
  23. public string mtrlsectype { get; set; }
  24. public string zxmtrlmode { get; set; }
  25. public string usermtrlmode { get; set; }
  26. public string plancode { get; set; }
  27. public string mtrlengname { get; set; }
  28. public int pageindex { get; set; }
  29. public int pagesize { get; set; }
  30. public override string GetApiName()
  31. {
  32. return "GetErpMtrlPriceList";
  33. }
  34. }
  35. public sealed class GetErpMtrlPriceListResponse : LJResponse
  36. {
  37. public List<L1Mtrldef> mtrldefList { get; set; }
  38. public int pageindex { get; set; }
  39. public int pagesize { get; set; }
  40. public int totalcnt { get; set; }
  41. }
  42. }