using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { /// /// 通用WebApi返回回执 /// public class CommonWebApiResult { /// /// 是否成功 true=成功 false=失败 /// public bool succ { get; set; } = false; /// /// 状态 0-成功 /// public int status { get; set; } = 0; /// /// 返回消息 /// public string msg { get; set; } /// /// 总记录数 /// public int total { get; set; } /// /// 当前页列表数据 /// public object rows { get; set; } /// /// 合计信息 /// public object summary { get; set; } /// /// 扩展信息 /// public object extra { get; set; } /// /// 扩展信息2 /// public object extra2 { get; set; } } }