GetMtrlDefList.cs 869 B

12345678910111213141516171819202122232425262728293031
  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 int pagesize { get; set; }
  20. public int pageindex { get; set; }
  21. }
  22. public sealed class GetMtrlDefListResponse : LJResponse
  23. {
  24. public List<u_mtrl_price> list { get; set; }
  25. public int pagesize { get; set; }
  26. public int pageindex { get; set; }
  27. public int totalcnt { get; set; }
  28. }
  29. }