123456789101112131415161718192021222324252627282930313233343536373839 |
- 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_picture"), PrimaryKey("Id")]
- public class ZtPicture
- {
- public int Id { set; get; }
- public string Code { set; get; }
- public string Name { set; get; }
- public int AreaId { set; get; }
- public int Sort { set; get; }
- public bool IsRAR { set; get; }
- public string About { set; get; }
- public string hTitle { set; get; }
- public string hKeywords { set; get; }
- public string hDescription { set; get; }
- public DateTime Addtime { set; get; }
- }
- }
|