12345678910111213141516171819202122232425262728293031323334 |
- 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; }
- /// <summary>
- /// 文章详情
- /// </summary>
- 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; }
- }
- }
|