using System;
using System.Net.Http;
using System.Threading.Tasks;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace HttpClientQuery
{
class PageInfo
{
public int start; //得是public类型
public string table;
public int getStart(){
return start;
}
//不能用c#自带的get set方法 以下get set方法是在sts中建相应的java类后用自动生成方法得到的
public void setStart(int start){
this.start = start;
}
public string getTable(){
return table;
}
public void setTable(string table){
this.table = table;
}
public PageInfo(){
}
public PageInfo(int start, string table){
this.start = start;
this.table = table;
}
}
class FilterData
{
public string name;
public string value;
public string getName(){
return name;
}
public void setName(string name){
this.name = name;
}
public string getValue(){
return value;
}
public void setValue(string value){
this.value = value;
}
public FilterData()
{
}
public FilterData(string name, string value)
{
this.name = name;
this.value = value;
}
}
class DocQueryParam
{
public string id;
public List<FilterData> filterData;
public List<PageInfo> paginationInfo;
public int searchType;
public string tablename;
public string getId(){
return id;
}
public void setId(string id){