using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebAPIBase.Utils { /// /// api接口统一返回数据 /// public class ApiResponse { /// /// 是否成功 /// public bool isSuccess { get; set; } /// /// 提示信息 /// public string message { get; set; } /// /// 状态码 /// public int code { get; set; } /// /// 返回查询接口的数据 /// public Object returnData { get; set; } } }