ningshuxia
2023-02-06 1fc0b4ed96d4c4b1ff7142926239998de32b2ada
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace IStation
{
    /// <summary>
    /// 数据访问
    /// </summary>
    public class Paras_DataAccess
    {
        /// <summary>
        /// 是否为远程模式
        /// </summary>
        public bool IsRemoteMode
        {
            get { return _isRemoteMode; }
            set { _isRemoteMode = value; }
        }
        private bool _isRemoteMode = true;
 
 
        /// <summary>
        /// 
        /// </summary>
        public string DALNameSpace
        {
            get { return _nameSpace; }
            set { _nameSpace = value; }
        }
        private string _nameSpace = "IStation.DAL.LocalFile";
 
 
        /// <summary>
        /// 
        /// </summary>
        public string LogicDLLName
        {
            get { return _logicDLLName; }
            set { _logicDLLName = value; }
        }
        private string _logicDLLName = "IStation.DAL.LocalFile.Logic";
 
 
        /// <summary>
        /// 
        /// </summary>
        public string MonitorDLLName
        {
            get { return _monitorDLLName; }
            set { _monitorDLLName = value; }
        }
        private string _monitorDLLName = "IStation.DAL.LocalFile.Monitor";
 
 
        /// <summary>
        /// 
        /// </summary>
        public string ProductDLLName
        {
            get { return _productDLLName; }
            set { _productDLLName = value; }
        }
        private string _productDLLName = "IStation.DAL.LocalFile.Product";
 
 
        /// <summary>
        /// 
        /// </summary>
        public string ProjectDLLName
        {
            get { return _projectDLLName; }
            set { _projectDLLName = value; }
        }
        private string _projectDLLName = "IStation.DAL.LocalFile.Project";
 
 
        /// <summary>
        /// 
        /// </summary>
        public string SceneDLLName
        {
            get { return _sceneDLLName; }
            set { _sceneDLLName = value; }
        }
        private string _sceneDLLName = "IStation.DAL.LocalFile.Scene";
 
 
    }
}