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 { /// /// 获取所有AGV地图点位 /// /// List GetAllMapPoint(); /// /// 更新或添加地图点位列表 /// /// /// bool RefreshOrAddAGVMapPoint(List records); /// /// 删除所有AGV点位 /// /// /// bool DeleteAllAGVMapPoint(); /// /// 删除旧的点位,添加新的点位 /// /// /// bool DeleteAndAddAgvMapPoint(List aGVMapPoint); } }