wanshenmean
5 天以前 682413a01effa5ae936e418fecdfd72f670d09ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace WIDESEAWCS_S7Simulator.Application;
 
/// <summary>
/// WCS 数据库连接配置
/// </summary>
public class WcsDbOptions
{
    public const string SectionName = "WcsDb";
 
    /// <summary>
    /// 是否启用数据库同步
    /// </summary>
    public bool Enabled { get; set; }
 
    /// <summary>
    /// 连接字符串
    /// </summary>
    public string ConnectionString { get; set; } = string.Empty;
 
    /// <summary>
    /// 数据库类型:SqlServer=2, MySql=1
    /// </summary>
    public int DbType { get; set; } = 2;
}