/*
|
*所有关于VV_Dispatch类的业务代码接口应在此处编写
|
*/
|
using WIDESEA_Core.BaseProvider;
|
using WIDESEA_Entity.DomainModels;
|
using WIDESEA_Core.Utilities;
|
using System.Linq.Expressions;
|
namespace WIDESEA_WCS.IServices
|
{
|
public partial interface IVV_DispatchService
|
{
|
/// <summary>
|
/// 启动服务
|
/// </summary>
|
/// <returns></returns>
|
public WebResponseContent StartServe();
|
|
/// <summary>
|
/// 关闭服务
|
/// </summary>
|
/// <returns></returns>
|
public WebResponseContent CloseServe();
|
|
/// <summary>
|
/// 启动指定服务
|
/// </summary>
|
/// <param name="jobName"></param>
|
/// <returns></returns>
|
public WebResponseContent StartJob(string jobName);
|
|
/// <summary>
|
/// 关闭指定服务
|
/// </summary>
|
/// <param name="jobName"></param>
|
/// <returns></returns>
|
public WebResponseContent CloseJob(string jobName);
|
|
/// <summary>
|
/// 检查服务状态
|
/// </summary>
|
/// <returns></returns>
|
public WebResponseContent CheckServeState();
|
|
}
|
}
|