You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
724 B

using System.Text;
using Common.Util;
using HybirdFrameworkCore.Autofac.Attribute;
using Newtonsoft.Json;
using Service.Cloud.Common;
using Service.Cloud.Msg.Cloud.Req.OutCharger.Req;
namespace Service.Cloud.Handler.OutCharger;
[Scope("InstancePerDependency")]
public class PileStopChargeHandler : IBaseHandler
{
public bool CanHandle(string cmd)
{
return CloudConst.pileStopCharge == cmd;
}
public void Handle(string t)
{
PileStopCharge? pileStopCharge = JsonConvert.DeserializeObject<PileStopCharge>(t);
if (pileStopCharge != null)
{
HttpUtil.SendPostRequest(pileStopCharge, "http://127.0.0.1:5035/api/OutCharger/SendStopOutCharger");
}
}
}