ZtArticle.cs 600 B

1234567891011121314151617181920212223242526272829303132
  1. using MC.ORM;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace CP.Model
  8. {
  9. /// <summary>
  10. /// 专题相关
  11. /// </summary>
  12. [TableName("Zt_Article"), PrimaryKey("Id")]
  13. public class ZtArticle
  14. {
  15. public int Id { set; get; }
  16. public string Title { set; get; }
  17. public int Cid { set; get; }
  18. public int TagId { set; get; }
  19. public string ShortDetail { set; get; }
  20. public DateTime Addtime { set; get; }
  21. public bool IsDelete { set; get; }
  22. }
  23. }