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.

33 lines
973 B
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 IAGVJobService : IBaseService<AGVJob>
{
/// <summary>
/// 获取AGV模板列表
/// </summary>
/// <returns></returns>
List<AGVJob> GetAGVJobList();
/// <summary>
/// 根据模板类型获取对应的AGV模板列表
/// </summary>
/// <param name="jobType"></param>
/// <returns></returns>
List<AGVJob> GetAGVJobListByJobType(string jobType);
/// <summary>
/// 根据模板类型和传送带编号获取对应的AGV模板
/// </summary>
/// <param name="jobType"></param>
/// <param name="conveyorno"></param>
/// <returns></returns>
AGVJob GetAGVJobListByTypeAndConveyorNo(string jobType, string conveyorno);
}
}