using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ApiTools.Core
{
///
/// 资源服务
///
public enum EnumResourceService
{
///
/// 灵活用工服务
///
[ResourceService(ServiceName = "FlexJobServer", ApplicationName = "ApiToolsFlexJobServer.Application", RouteArea = "flexjob")]
FlexJobServer,
///
/// 通用服务
///
[ResourceService(ServiceName = "FlexJobServer", ApplicationName = "ApiToolsCommonServer.Application", RouteArea = "common")]
CommonServer,
///
/// 用户服务
///
[ResourceService(ServiceName = "FlexJobServer", ApplicationName = "ApiToolsUserServer.Application", RouteArea = "user")]
UserServer,
///
/// 人力资源服务
///
[ResourceService(ServiceName = "HumanResourcesServer")]
HumanResourcesServer,
///
/// 电子签服务
///
[ResourceService(ServiceName = "ElectronSignServer")]
ElectronSignServer
}
}