using Admin.Core.Model; using System.Threading.Tasks; namespace Admin.Core.IService { /// <summary> /// IExecutePlanInfoServices /// </summary> public interface IExecutePlanInfoServices : IBaseServices<ExecutePlanInfo> { Task<bool> PlanMoveUp(string id,string station); Task<bool> PlanMoveDown(string id, string station); Task<bool> ExecPlanDelete(string id); Task<ExecutePlanInfo> PlanNextPass(ExecutePlanInfo sm); } }