lijin
2025-11-20 2a75aa6b6e23a2f86046a2da21eb9e97ec58bdc3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace ApiTools.Core
{
    /// <summary>
    /// 资源服务
    /// </summary>
    public enum EnumResourceService
    {
        /// <summary>
        /// 灵活用工服务
        /// </summary>
        [ResourceService(ServiceName = "FlexJobServer", ApplicationName = "ApiToolsFlexJobServer.Application", RouteArea = "flexjob")]
        FlexJobServer,
        /// <summary>
        /// 通用服务
        /// </summary>
        [ResourceService(ServiceName = "FlexJobServer", ApplicationName = "ApiToolsCommonServer.Application", RouteArea = "common")]
        CommonServer,
        /// <summary>
        /// 用户服务
        /// </summary>
        [ResourceService(ServiceName = "FlexJobServer", ApplicationName = "ApiToolsUserServer.Application", RouteArea = "user")]
        UserServer,
        /// <summary>
        /// 人力资源服务
        /// </summary>
        [ResourceService(ServiceName = "HumanResourcesServer")]
        HumanResourcesServer,
        /// <summary>
        /// 电子签服务
        /// </summary>
        [ResourceService(ServiceName = "ElectronSignServer")]
        ElectronSignServer
    }
}