22 lines
540 B
C#
22 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Tnb.ProductionMgr.Entities.Dto.PrdManage;
|
|
|
|
namespace Tnb.ProductionMgr.Interfaces
|
|
{
|
|
public interface IAndonService
|
|
{
|
|
Task<dynamic> GetPrdTask(string stationId);
|
|
Task SaveData(AndonRecordInput AndonRecordInput);
|
|
|
|
/// <summary>
|
|
/// 获取andon级联选择项数据
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
Task<dynamic> GetAndonCascaderOptions();
|
|
}
|
|
}
|