using System.Threading.Tasks; using JiShe.CollectBus.EnergySystem.Dto; using Volo.Abp.Application.Services; namespace JiShe.CollectBus.EnergySystem; public interface IEnergySystemAppService : IApplicationService { /// /// 电表阀控、水表阀控 /// /// The input. /// Task> ValveControl(ValveControlInput input); }