z8018
2026-02-11 b8fb68b44c29e4667f6ea5746119413809a60a9e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace KH.WMS.Core.Constants
{
    public class AppSettingsConstants
    {
        /// <summary>
        /// 数据库连接字符串配置节点
        /// </summary>
        public const string DbConnection = "DbConnection";
 
        public const string DbType_MySql = "mysql";
 
        public const string DbType_SqlServer = "sqlserver";
 
        public const string DbType_PostgreSql = "postgresql";
 
        public const string DbType_Oracle = "oracle";
 
        public const string DbType_Sqlite = "sqlite";
    }
}