using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace AppWebservice.Model { public class JsonModel where T : class { //接口调用是否成功,0不成功,1成功 public string Result { get; set; } //接口调用返回值类型 public string ResultType { get; set; } //返回结果行数 public string ResultRowsCount { get; set; } //接口调用不成原因 public string ErrReason { get; set; } public List DataList = new List(); } }