12345678910111213141516171819202122232425 |
- using MC.ORM;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CP.Model
- {
- /// <summary>
- /// 专题图片
- /// </summary>
- [TableName("Zt_Page"), PrimaryKey("Id")]
- public class ZtPage
- {
- public int Id { set; get; }
- public string ClassName { set; get; }
- public string Content { set; get; }
- public int PageId { set; get; }
- }
- }
|