GetMtrlDefList.cs 911 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using JLHHJSvr.Com.Model;
  6. using JLHHJSvr.DBA.DBModle;
  7. using LJLib.Net.SPI.Com;
  8. namespace JLHHJSvr.Com
  9. {
  10. public sealed class GetMtrlDefListRequest : ILJRequest<GetMtrlDefListResponse>
  11. {
  12. public override string GetApiName()
  13. {
  14. return "GetMtrlDefList";
  15. }
  16. public string token { get; set; }
  17. public List<int> mtrltypeids { get; set; }
  18. public int? pricelistid { get; set; }
  19. public string keyword { get; set; }
  20. public int pageSize { get; set; }
  21. public int pageNum { get; set; }
  22. }
  23. public sealed class GetMtrlDefListResponse : LJResponse
  24. {
  25. public List<u_mtrl_price> list { get; set; }
  26. public int pagesize { get; set; }
  27. public int pageindex { get; set; }
  28. public int totalcnt { get; set; }
  29. }
  30. }