using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CP.Model.ZiXun.Entity { public class NewList { public int ID { get; set; } public string title { get; set; } public string url { get; set; } public string createUserName { get; set; } public DateTime createTime { get; set; } public int menuId { get; set; } /// /// 文章详情 /// public string description { get; set; } public string menuName { get; set; } public string parentShorthand { get; set; } public string childShorthand { get; set; } public string SourceUrl { get; set; } } }