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.
29 lines
716 B
C#
29 lines
716 B
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Khd.Core.Domain.Dto.webapi;
|
|
using Khd.Core.Domain.Models;
|
|
|
|
namespace Khd.Core.Application.Interface
|
|
{
|
|
public interface IWcsTaskApplication : IBaseApplication<WcsTask>
|
|
{
|
|
WcsTask Get(int id);
|
|
WcsTask Add(WcsTask model);
|
|
WcsTask Update(WcsTask model);
|
|
|
|
ReponseagvCallbackDto AgvCallback(agvCallbackDto agvCallbackDto);
|
|
|
|
/// <summary>
|
|
/// 入库完成
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
string InWare(long taskId);
|
|
/// <summary>
|
|
/// 出库完成
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
string OutWare(long taskId);
|
|
|
|
|
|
}
|
|
} |