Эх сурвалжийг харах

Merge branch 'dev' of http://110.188.24.182:10023/Fengwo/hotline into dev

tangjiang 8 сар өмнө
parent
commit
aa61e7146e

+ 7 - 1
src/Hotline.Share/Dtos/Article/BulletinDto.cs

@@ -104,7 +104,13 @@ namespace Hotline.Share.Dtos.Article
         /// </summary>
         public DateTime? ExaminTime { get; set; }
 
-		public string BulletinStateText => BulletinState.GetDescription();
+        /// <summary>
+        /// 是否上架
+        /// </summary>
+        public bool? IsArrive { get; set; }
+
+
+        public string BulletinStateText => BulletinState.GetDescription();
 
         public string PushRangesText => PushRanges.Any() ? string.Join("、", PushRanges.Select(x => x.Value)) : "-";