sunpengfei
昨天 c682cd59ded8e71957a802dd4f8dcf58e0113c0f
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 FlexJobApi.Core
{
    /// <summary>
    /// 资源服务
    /// </summary>
    public enum EnumResourceService
    {
        /// <summary>
        /// 灵活用工服务
        /// </summary>
        [ResourceService(ServiceName = "FlexJobServer", ApplicationName = "FlexJobApi.FlexJobServer.Application", RouteArea = "flexjob")]
        FlexJobServer,
        /// <summary>
        /// 通用服务
        /// </summary>
        [ResourceService(ServiceName = "FlexJobServer", ApplicationName = "FlexJobApi.CommonServer.Application", RouteArea = "common")]
        CommonServer,
        /// <summary>
        /// 用户服务
        /// </summary>
        [ResourceService(ServiceName = "FlexJobServer", ApplicationName = "FlexJobApi.UserServer.Application", RouteArea = "user")]
        UserServer,
        /// <summary>
        /// 人力资源服务
        /// </summary>
        [ResourceService(ServiceName = "HumanResourcesServer")]
        HumanResourcesServer,
        /// <summary>
        /// 电子签服务
        /// </summary>
        [ResourceService(ServiceName = "ElectronSignServer")]
        ElectronSignServer
    }
}