GetFormulaCompute.cs 612 B

12345678910111213141516171819202122232425
  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 GetFormulaComputeRequest : ILJRequest<GetFormulaComputeResponse>
  11. {
  12. public string GetApiName()
  13. {
  14. return "GetFormulaCompute";
  15. }
  16. public string token { get; set; }
  17. public List<string> formulas { get; set; }
  18. }
  19. public sealed class GetFormulaComputeResponse : LJResponse
  20. {
  21. public List<decimal> values { get; set; }
  22. }
  23. }