using HybirdFrameworkCore.Autofac.Attribute; using NewLife; using Newtonsoft.Json; using Service.Cloud.Client; using Service.Cloud.Common; using Service.Cloud.Msg.Cloud.Req; using Service.Cloud.Msg.Host.Resp; using Service.Init; namespace Service.Cloud.Handler; [Scope("InstancePerDependency")] public class BusinessHourHandler : IBaseHandler { public bool CanHandle(string cmd) { return CloudConst.setOpTime == cmd; } public void Handle(string t) { BusinessHour? req = JsonConvert.DeserializeObject(t); if (req != null) { List reqSeg = req.seg; if (reqSeg is { Count: > 0 }) { StaticStationInfo.OperationStartTime = reqSeg.Select(i => i.st).Join(); StaticStationInfo.OperationEndTime = reqSeg.Select(i => i.et).Join(); } BusinessHourResp resp = new BusinessHourResp(); CloudClientMgr.CloudClient?.Publish(resp); } } }