using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Webdiyer.WebControls.Mvc; namespace Pcb.Domain { public class WebLogSearch { /// /// 搜索关键字 /// public string SearchKey { get; set; } /// /// 主键 /// public int? Id { get; set; } /// /// 主键列表 /// public string IdList { get; set; } /// /// 状态 /// public int? Status { get; set; } /// /// 状态列表 /// public string StatusList { get; set; } /// /// 起始状态 /// public int? StartStatus { get; set; } /// /// 起始创建时间 /// public DateTime? StartCreateTime { get; set; } /// /// 结束时间 /// public DateTime? EndTime { get; set; } /// /// 类型 /// public string TypeKey { get; set; } /// /// 内容 /// public string Content { get; set; } } }