1234567891011121314151617181920212223242526272829303132 |
- 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_Article"), PrimaryKey("Id")]
- public class ZtArticle
- {
- public int Id { set; get; }
- public string Title { set; get; }
- public int Cid { set; get; }
- public int TagId { set; get; }
- public string ShortDetail { set; get; }
- public DateTime Addtime { set; get; }
- public bool IsDelete { set; get; }
- }
- }
|