ZtPicture.cs 774 B

123456789101112131415161718192021222324252627282930313233343536373839
  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_picture"), PrimaryKey("Id")]
  13. public class ZtPicture
  14. {
  15. public int Id { set; get; }
  16. public string Code { set; get; }
  17. public string Name { set; get; }
  18. public int AreaId { set; get; }
  19. public int Sort { set; get; }
  20. public bool IsRAR { set; get; }
  21. public string About { set; get; }
  22. public string hTitle { set; get; }
  23. public string hKeywords { set; get; }
  24. public string hDescription { set; get; }
  25. public DateTime Addtime { set; get; }
  26. }
  27. }