|
@@ -545,6 +545,27 @@ namespace Hotline.Share.Dtos.Article
|
|
|
public string IndustryId { get; set; }
|
|
|
}
|
|
|
|
|
|
+ public class BulletinListOutDto
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 公告ID
|
|
|
+ /// </summary>
|
|
|
+ public string Id { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 标题
|
|
|
+ /// </summary>
|
|
|
+ public string Title { get; set; }
|
|
|
+
|
|
|
+ private string content;
|
|
|
+ /// <summary>
|
|
|
+ /// 内容
|
|
|
+ /// </summary>
|
|
|
+ public string Content { get { return content.RemoveHtmlTags(); } set { content = value; } }
|
|
|
+
|
|
|
+ public DateTime CreationTime { get; set; }
|
|
|
+ }
|
|
|
+
|
|
|
/// <summary>
|
|
|
/// 微信小程序获取宣传学习列表出参
|
|
|
/// </summary>
|
|
@@ -560,11 +581,10 @@ namespace Hotline.Share.Dtos.Article
|
|
|
/// </summary>
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
- private string content;
|
|
|
/// <summary>
|
|
|
/// 内容
|
|
|
/// </summary>
|
|
|
- public string Content { get { return content.RemoveHtmlTags(); } set { content = value; } }
|
|
|
+ public string Content { get; set; }
|
|
|
|
|
|
public DateTime CreationTime { get; set; }
|
|
|
}
|