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