1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class GetFormulaVarListRequest : ILJRequest<GetFormulaVarListResponse>
- {
- public override string GetApiName()
- {
- return "GetFormulaVarList";
- }
- public string token { get; set; }
- }
- public sealed class GetFormulaVarListResponse : LJResponse
- {
- public List<Recursion2> recursionList { get; set; }
- }
- }
|