You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AUCMA_SCADA/Admin.Core.IService/IService_New/IExecutePlanInfoServices.cs

16 lines
480 B
C#

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