/*********************************************************************** * 功能描述:OrderStenticlLog * 创建日期:09/07/2017 10:24:12 * 创建作者:李太云 * 电话: * 邮件: ***********************************************************************/ #region using using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Web.Mvc; using System.ComponentModel.DataAnnotations; #endregion namespace Pcb.Domain { /// ///OrderStenticlLog 查询 /// public class OrderStenticlLogSearch { /// /// 查询关键字 /// public string SearchKey { get; set; } /// /// 高级查询 /// public int AdvancedQuery { get; set; } /// /// Id /// public int Id { get;set; } /// /// Id2 /// public int Id2 { get;set; } /// /// AdminId /// public int? AdminId { get;set; } /// /// AdminId2 /// public int? AdminId2 { get;set; } /// /// OrderId /// public int? OrderId { get;set; } /// /// OrderId2 /// public int? OrderId2 { get;set; } /// /// AddTime /// public DateTime? AddTime { get;set; } /// /// SendFlag /// public int? SendFlag { get;set; } /// /// SendFlag2 /// public int? SendFlag2 { get;set; } /// /// Note /// public string Note { get;set; } } }