using System;
using Volo.Abp.Application.Dtos;
namespace Yi.Framework.Stock.Application.Contracts.Dtos.StockNews
{
///
/// 股市新闻DTO
///
public class StockNewsDto : EntityDto
{
///
/// 新闻标题
///
public string Title { get; set; }
///
/// 新闻内容
///
public string Content { get; set; }
///
/// 发布时间
///
public DateTime PublishTime { get; set; }
///
/// 新闻来源
///
public string Source { get; set; }
///
/// 创建时间
///
public DateTime CreationTime { get; set; }
///
/// 排序号
///
public int OrderNum { get; set; }
}
}