namespace YiSha.Model.Param.KJH { /// /// 创 建:clg /// 日 期:2021-06-29 14:40 /// 描 述:专题文章实体查询类 /// public class ZT_ArticleListParam { /// /// 标题 /// public string Title { get; set; } /// /// 专题文章类型Id /// public int? Cid { get; set; } public string CName { get; set; } public int? TagId { get; set; } } /// /// 新增专题文章实体 /// public class TZ_ArticleParam { /// /// Id /// public int Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 专题文章类型Id /// public int Cid { get; set; } /// /// 专题文章类型名称 /// public string CName { get; set; } /// /// 内容 不带html标签 /// public string ShortDetail { get; set; } /// /// 含有html标签 /// public string Detail { get; set; } /// /// 操作人Id /// public int EditId { get; set; } /// /// 操作人昵称 /// public string Editor { get; set; } } public class ZT_ColumnDtoParam { public int? Cid { get;set; } public int? TagId { get; set; } } }