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 GetPrdTask(string stationId); Task SaveData(AndonRecordInput AndonRecordInput); /// /// 获取andon级联选择项数据 /// /// Task GetAndonCascaderOptions(); } }