namespace Antis.Erp.Application.Contracts.Dtos.News { /// /// 新闻更新输入DTO /// public class NewsUpdateInputVo { /// /// 新闻标题 /// public string Title { get; set; } = string.Empty; /// /// 新闻内容 /// public string Content { get; set; } = string.Empty; /// /// 新闻作者 /// public string? Author { get; set; } /// /// 新闻分类 /// public string? Category { get; set; } /// /// 发布时间 /// public DateTime? PublishTime { get; set; } /// /// 排序 /// public int OrderNum { get; set; } = 0; /// /// 状态 /// public bool State { get; set; } = true; /// /// 备注 /// public string? Remark { get; set; } } }