schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HxEnum
{
    /// <summary>
    /// 数据库 枚举
    /// </summary>
    public static class DbEnum
    {
        /// <summary>
        /// 数据库连接串名称
        /// </summary>
        public enum ConnectionStringsEnum_Db
        {
            /// <summary>
            /// MySql连接串名称(中控系统)
            /// </summary> 
            HxFeedingPlateSys_Mysql_Db_Connect,
            /// <summary>
            /// MySql连接串名称(机械臂)
            /// </summary> 
            HxRobotSys_Mysql_Db_Connect,
            /// <summary>
            /// SqlServer连接串名称
            /// </summary> 
            HxFeedingPlateSys_SqlServer_Db_Connect,
        }
    }
}