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.
39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using SlnMesnac.Model.domain;
|
|
using SlnMesnac.Repository.service.@base;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Repository.service
|
|
{
|
|
public interface IAGVMapPointService : IBaseService<AGVMapPoint>
|
|
{
|
|
/// <summary>
|
|
/// 获取所有AGV地图点位
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<AGVMapPoint> GetAllMapPoint();
|
|
|
|
/// <summary>
|
|
/// 更新或添加地图点位列表
|
|
/// </summary>
|
|
/// <param name="records"></param>
|
|
/// <returns></returns>
|
|
bool RefreshOrAddAGVMapPoint(List<AGVMapPoint> records);
|
|
|
|
/// <summary>
|
|
/// 删除所有AGV点位
|
|
/// </summary>
|
|
/// <param name="aGVMapPoint"></param>
|
|
/// <returns></returns>
|
|
bool DeleteAllAGVMapPoint();
|
|
|
|
/// <summary>
|
|
/// 删除旧的点位,添加新的点位
|
|
/// </summary>
|
|
/// <param name="aGVMapPoint"></param>
|
|
/// <returns></returns>
|
|
bool DeleteAndAddAgvMapPoint(List<AGVMapPoint> aGVMapPoint);
|
|
}
|
|
}
|