You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
578 B
21 lines
578 B
2 months ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Web;
|
||
|
|
||
|
namespace AppWebservice.Model
|
||
|
{
|
||
|
public class JsonModel<T> 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<T> DataList = new List<T>();
|
||
|
}
|
||
|
}
|