using LJLib.Net.SPI.Com; using LJLib.Net.SPI.Server; using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JLHHJSvr.Com { public class CommonDynamicSelectRequest : ILJRequest { public string token { get; set; } public string clienttype { get; set; } /// /// xml名称 /// public string dsname { get; set; } public JObject queryparams { get; set; } public string orderstr { get; set; } public int pageindex { get; set; } public int pagesize { get; set; } /// /// 用户习惯dwname /// public string dwname { get; set; } /// /// 用户习惯itemname /// public string itemname { get; set; } /// /// 用户习惯是否压缩 /// public byte ifcompress { get; set; } public string GetApiName() { return "CommonDynamicSelect"; } } public class CommonDynamicSelectResponse : LJResponse { public JArray datatable { get; set; } public JObject tableinfo { get; set; } public int totalcnt { get; set; } public int pageindex { get; set; } public int pagesize { get; set; } } }