using iWare_SCADA_BusinessLogical.Utils; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Globalization; using System.Windows.Forms; namespace iWare_SCADA_BusinessLogical { /// /// 用于查询的参数 /// public class QueryParam { /// /// 用于精确查询的字段 /// public Dictionary Filter { get; set; } /// /// 用于精确查询不等徐的字段 /// public Dictionary NotFilter { get; set; } /// /// 用于模糊查询的字段 /// public Dictionary Search { get; set; } /// /// 用于排序查询的字段 /// public Dictionary Order { get; set; } /// /// 用于查询时间小于等于的字段 /// public Dictionary Leqd { get; set; } /// /// 用于查询时间大于等于的字段 /// public Dictionary Geqd { get; set; } /// /// 用于查询时间小于的字段 /// public Dictionary Ltd { get; set; } /// /// 用于查询时间大于的字段 /// public Dictionary Gtd { get; set; } /// /// 用于查询小于等于的字段 /// public Dictionary Leq { get; set; } /// /// 用于查询大于等于的字段 /// public Dictionary Geq { get; set; } /// /// 用于查询小于的字段 /// public Dictionary Lt { get; set; } /// /// 用于查询大于的字段 /// public Dictionary Gt { get; set; } /// /// 用于查询大于的字段 /// public Dictionary Neq { get; set; } /// /// 用于分页,第几页 /// public int PageIndex { get; set; } /// /// 用于分页,每个页面的数据数量 /// public int PageSize { get; set; } } public class OP60Info { public string datetime { get; set; } public string col2 { get; set; } public string value { get; set; } public DateTime? datetimeHandle{get;set;} } }