/*********************************************************************** * 功能描述: 查询条件类 * 创建日期:2015-06-25 16:08 * 创建作者: * 电话: * 邮件:337296913@qq.com ***********************************************************************/ #region using using System; #endregion namespace Pcb.Domain { /// /// 查询条件 /// public class SiteNoticeSearch { /// /// 公告ID /// public int Id { get; set; } /// /// 标题 /// public string NoticeTitle { get; set; } /// /// |公告归属#NoticeChanne# /// public string Channel { get; set; } } }