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.
40 lines
1.2 KiB
C#
40 lines
1.2 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 IAGVJobService : IBaseService<AGVJob>
|
|
{
|
|
/// <summary>
|
|
/// 获取AGV模板列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
List<AGVJob> GetAGVJobList();
|
|
|
|
/// <summary>
|
|
/// AGVGuid获取Job
|
|
/// </summary>
|
|
/// <param name="guid"></param>
|
|
/// <returns></returns>
|
|
AGVJob GetAGVJobByJobGuid(string guid);
|
|
|
|
/// <summary>
|
|
/// 根据模板类型获取对应的AGV模板列表
|
|
/// </summary>
|
|
/// <param name="jobType"></param>
|
|
/// <returns></returns>
|
|
List<AGVJob> GetAGVJobListByJobType(string jobType);
|
|
|
|
/// <summary>
|
|
/// 根据模板类型和传送带编号获取对应的AGV模板
|
|
/// </summary>
|
|
/// <param name="jobType">任务类型</param>
|
|
/// <param name="conveyorno">0就是通用模板 其他编号为对应传送带的调用模板</param>
|
|
/// <returns></returns>
|
|
AGVJob GetAGVJobListByTypeAndConveyorNo(string jobType, string conveyorno);
|
|
}
|
|
}
|