17 lines
383 B
C#
17 lines
383 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
|
|
{
|
|
public Task<dynamic> GetPrdTask(string stationId);
|
|
|
|
public Task SaveData(AndonRecordInput AndonRecordInput);
|
|
}
|
|
}
|