generated from wenjy/SlnMesnac
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.
41 lines
1.1 KiB
C#
41 lines
1.1 KiB
C#
using SlnMesnac.Model.domain;
|
|
using SlnMesnac.Model.Enum;
|
|
using SlnMesnac.Repository.service.@base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
public interface IAGVSettingService : IBaseService<AGVSetting>
|
|
{
|
|
/// <summary>
|
|
/// 查询所有AGV状态
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<AGVSetting> GetAllAgvSetting();
|
|
|
|
/// <summary>
|
|
/// 根据AGVID获取AGV类型
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
string GetAgvSettingByID(string id);
|
|
|
|
/// <summary>
|
|
/// 插入AGV设置
|
|
/// </summary>
|
|
/// <param name="agvSetting"></param>
|
|
/// <returns></returns>
|
|
bool InsertAgvSetting(AGVSetting agvSetting);
|
|
|
|
/// <summary>
|
|
/// 根据ID删除AGV设置
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
bool DeleteAgvSettingByID(int id);
|
|
}
|
|
}
|