15 lines
455 B
C#
Raw Normal View History

2024-12-19 16:07:07 +08:00
using System.Threading.Tasks;
using JiShe.CollectBus.EnergySystem.Dto;
using Volo.Abp.Application.Services;
namespace JiShe.CollectBus.EnergySystem;
public interface IEnergySystemAppService : IApplicationService
{
/// <summary>
/// 电表阀控、水表阀控
/// </summary>
/// <param name="input">The input.</param>
/// <returns></returns>
Task<BaseResultDto<ValveControlOutput>> ValveControl(ValveControlInput input);
}