using Volo.Abp.Application.Dtos;
namespace Antis.Erp.Application.Contracts.Dtos.News
{
///
/// 新闻列表输出DTO
///
public class NewsGetListOutputDto : EntityDto
{
///
/// 新闻标题
///
public string Title { get; set; } = string.Empty;
///
/// 新闻作者
///
public string? Author { get; set; }
///
/// 新闻分类
///
public string? Category { get; set; }
///
/// 发布时间
///
public DateTime? PublishTime { get; set; }
///
/// 浏览量
///
public int ViewCount { get; set; }
///
/// 状态
///
public bool State { get; set; }
///
/// 创建时间
///
public DateTime CreationTime { get; set; }
}
}