using System; using System.Collections.Generic; namespace Lottomat.Application.Entity.LotteryNumberManage.ViewModel { /// /// 彩票新闻列表 /// public class LotteryNewsListViewEntity { /// /// ID /// public int PK { get; set; } /// /// 类型名称 /// /// public string TypeName { get; set; } /// /// 类型id /// public int TypeId { get; set; } /// /// 类型代码 /// public string TypeCode { get; set; } /// /// 标题 /// /// public string Title { get; set; } /// /// 添加时间 /// /// public DateTime? AddTime { get; set; } /// /// 作者 /// /// public string Author { get; set; } /// /// 内容 /// /// public string Content { get; set; } } }