16 lines
480 B
C#
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);
|
|
}
|
|
} |