|
@@ -0,0 +1,29 @@
|
|
|
|
+using System;
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+using System.Linq;
|
|
|
|
+using System.Text;
|
|
|
|
+using System.Threading.Tasks;
|
|
|
|
+
|
|
|
|
+namespace ZhonTai.Admin.Services.Notice.Dto
|
|
|
|
+{
|
|
|
|
+ public class NoticeListOutput
|
|
|
|
+ {
|
|
|
|
+ public long Id { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 公告标题
|
|
|
|
+ /// </summary>
|
|
|
|
+ public string Title { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 排序 越大越靠前
|
|
|
|
+ /// </summary>
|
|
|
|
+ public int Rank { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ /// 是否弹窗 1弹窗 0不弹窗
|
|
|
|
+ /// </summary>
|
|
|
|
+ public int IsAlter { get; set; }
|
|
|
|
+ /// <summary>
|
|
|
|
+ ///
|
|
|
|
+ /// </summary>
|
|
|
|
+ public DateTime? CreatedTime { get; set; }
|
|
|
|
+ }
|
|
|
|
+}
|