/*
*所有关于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
{
///
/// 启动服务
///
///
public WebResponseContent StartServe();
///
/// 关闭服务
///
///
public WebResponseContent CloseServe();
///
/// 启动指定服务
///
///
///
public WebResponseContent StartJob(string jobName);
///
/// 关闭指定服务
///
///
///
public WebResponseContent CloseJob(string jobName);
///
/// 检查服务状态
///
///
public WebResponseContent CheckServeState();
///
/// 上传文件
///
///
//public WebResponseContent Upload(List files);
}
}