|
@@ -70,7 +70,7 @@ namespace Hotline.Share.Dtos.Push.FWMessage
|
|
|
/// 推送状态
|
|
|
/// </summary>
|
|
|
public EPushStatus Status { get; set; }
|
|
|
- public string StatusText => PushBusiness.GetDescription();
|
|
|
+ public string StatusText => Status.GetDescription();
|
|
|
|
|
|
/// <summary>
|
|
|
/// 发送失败原因
|
|
@@ -86,6 +86,6 @@ namespace Hotline.Share.Dtos.Push.FWMessage
|
|
|
/// 短信发送状态
|
|
|
/// </summary>
|
|
|
public ESendState SendState { get; set; }
|
|
|
- public string SendStateText => PushBusiness.GetDescription();
|
|
|
+ public string SendStateText => SendState.GetDescription();
|
|
|
}
|
|
|
}
|