using System.Collections.Generic; namespace CRM.Core.Common.Layui { public class LayuiData { public int code { get; set; } public string msg { get; set; } public int count { get; set; } public List data { get; set; } /// /// 合计行 /// public object totalRow { get; set; } public void SetFail(int code, string msg) { this.code = code; this.msg = msg; this.count = 0; this.data = null; } } }