using GxPress.Common.Page;
namespace GxPress.Request.SensitiveWord
{
///
/// 敏感词查询
///
public class SensitiveWordRequest : PageParameter
{
///
/// 搜索字段
///
///
public string KeyWord { get; set; }
///
/// 开始时间
///
///
public string BeginTime { get; set; }
///
/// 结束时间
///
///
public string EndTime { get; set; }
}
}