using System.Collections.Generic; namespace learun.util { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.10.23 /// 描 述:表格属性模型 /// public class JfGridModel { /// /// 绑定字段名 /// public string name { get; set; } /// /// 显示名称 /// public string label { get; set; } /// /// 宽度 /// public int width { get; set; } /// /// 对齐方式 /// public string align { get; set; } /// /// 高度 /// public int height { get; set; } /// /// 是否隐藏 /// public string hidden { get; set; } /// /// 子集 /// public IEnumerable children { get; set; } } }