ZtPage.cs 465 B

12345678910111213141516171819202122232425
  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_Page"), PrimaryKey("Id")]
  13. public class ZtPage
  14. {
  15. public int Id { set; get; }
  16. public string ClassName { set; get; }
  17. public string Content { set; get; }
  18. public int PageId { set; get; }
  19. }
  20. }