JLH_FetchPrice.cs 638 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. using JLHHJSvr.Com.Model;
  3. using LJLib.Net.SPI.Com;
  4. namespace JLHHJSvr.Com
  5. {
  6. /// <summary>
  7. /// 获取所有材料价
  8. /// </summary>
  9. public sealed class JLH_FetchPriceRequest: ILJRequest<JLH_FetchPriceResponse>
  10. {
  11. public string token { get; set; }
  12. public override string GetApiName()
  13. {
  14. return "JLH_FetchPrice";
  15. }
  16. }
  17. public sealed class JLH_FetchPriceResponse : LJResponse
  18. {
  19. /// <summary>
  20. /// 只有mtrlcode与price内容
  21. /// </summary>
  22. public List<u_configure_codemx> list { get; set; }
  23. }
  24. }