15 lines
455 B
C#
15 lines
455 B
C#
|
|
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);
|
|||
|
|
}
|