using System.Collections.Generic; namespace Learun.Application.BaseModule.CodeGeneratorModule { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.04.17 /// 描 述:查询条件设置数据 /// public class QueryModel { /// /// 搜索框宽 /// public int width { get; set; } /// /// 搜索框高 /// public int height { get; set; } /// /// 是否启用时间搜索框 1 启用 0 不启用 /// public string isDate { get; set; } /// /// 时间搜索框对应字段 /// public string DateField { get; set; } /// /// 查询字段设置 /// public List fields { get; set; } } /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.04.17 /// 描 述:查询条件字段设置数据 /// public class QueryFieldModel { /// /// 主键ID /// public string id { get; set; } /// /// 字段名 /// public string field { get; set; } /// /// 名字 /// public string name { get; set; } /// /// 比例 /// public string portion { get; set; } } }