using Yi.Framework.Ddd.Application.Contracts;
namespace Antis.Erp.Application.Contracts.Dtos.News
{
///
/// 新闻查询参数
///
public class NewsGetListInputVo : PagedAllResultRequestDto
{
///
/// 新闻标题(模糊查询)
///
public string? Title { get; set; }
///
/// 新闻作者(模糊查询)
///
public string? Author { get; set; }
///
/// 新闻分类
///
public string? Category { get; set; }
///
/// 状态
///
public bool? State { get; set; }
///
/// 开始时间
///
public DateTime? StartTime { get; set; }
///
/// 结束时间
///
public DateTime? EndTime { get; set; }
}
}