namespace Learun.Application.Base.SystemModule { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.03.08 /// 描 述:自定义查询-查询对象数据模型 /// public class CustmerQueryModel { /// /// 字段 /// public string field { get; set; } /// /// 字段中文名 /// public string fieldname { get; set; } /// /// 比较符号类型1:等于;2:不等于;3:包含;4:不包含; /// public int condition { get; set; } /// /// 比较符号名称 /// public string conditionname { get; set; } /// /// 数据类型1:文本;2:当前账号;3:当前公司;4:当前部门;5:当前岗位; /// public int type { get; set; } /// /// 具体数据值 /// public string value { get; set; } } }