Files
tnb.server/ProductionMgr/Tnb.ProductionMgr.Interfaces/IAndonService.cs
2023-10-07 17:28:47 +08:00

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();
}
}