|
@@ -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)) : "-";
|
|
|
|