xf 2 years ago
parent
commit
01e7c33219
1 changed files with 5 additions and 0 deletions
  1. 5 0
      src/Sharing.Province/Controllers/ProvinceController.cs

+ 5 - 0
src/Sharing.Province/Controllers/ProvinceController.cs

@@ -9,6 +9,7 @@ using System.Threading.Tasks;
 using IdentityModel.Client;
 using Microsoft.AspNetCore.Authorization;
 using Microsoft.AspNetCore.Mvc;
+using Sharing.Province.Dtos;
 using Sharing.Province.Dtos.HuiJu;
 using Sharing.WebCore;
 
@@ -33,6 +34,10 @@ namespace Sharing.Province.Controllers
             var pusher = _pusherProvider.CreatePusher(_channelConfigurationManager);
             await pusher.PushOrderCreatedAsync(new SubmitCaseInfoRequest(), HttpContext.RequestAborted);
             var a = _channelConfigurationManager.GetConfigurationProvince().HuiJu;
+
+            BaseReponse.Success();
+            BaseReponse.Failed("");
+
             return a;
         }
     }