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

40 lines
1.2 KiB
C#

using SlnMesnac.Model.AirportApiEntity;
using SlnMesnac.Model.domain;
using SlnMesnac.Repository.service.@base;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace SlnMesnac.Repository.service
{
public interface IManipulatorStateService : IBaseService<ManipulatorState>
{
/// <summary>
/// 查询空闲的机械臂信息
/// </summary>
/// <returns></returns>
List<ManipulatorState> GetFreeManipulatorState();
/// <summary>
/// 查询所有机械臂信息
/// </summary>
/// <returns></returns>
List<ManipulatorState> GetAllManipulatorState();
/// <summary>
/// 更新机械臂设备状态信息
/// </summary>
/// <param name="record"></param>
/// <returns></returns>
Task<bool> UpdateAsync(ManipulatorState record);
/// <summary>
/// 更新或插入机械臂设备状态信息
/// </summary>
/// <param name="response"></param>
/// <returns></returns>
Task<bool> UpdateOrAddByResponse(ManipulatorStateResponseEntity response);
}
}