ningshuxia
2024-06-18 e83dca6e861b622b54d3392ca0d3f1f1eb69f7c9
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
namespace IStation.Settings
{
    /// <summary>
    /// 
    /// </summary>
    public class ParasHelper
    {
        /// <summary>
        /// 众毅对接
        /// </summary>
        public static Paras_ZyDocking ZyDocking
        {
            get { return FileHelper.Get().ZyDocking; }
        }
 
        /// <summary>
        /// 本地文件
        /// </summary>
        public static Paras_LocalFile LocalFile
        {
            get { return FileHelper.Get().LocalFile; }
        }
 
        /// <summary>
        /// 数据库
        /// </summary>
        public static Paras_DataBase DataBase
        {
            get { return FileHelper.Get().DataBase; }
        }
 
        /// <summary>
        /// Task
        /// </summary>
        public static Paras_Task Task
        {
            get { return FileHelper.Get().Task; }
        }
 
        /// <summary>
        /// 保存
        /// </summary>
        public static bool Save()
        {
            return FileHelper.Save();
        }
 
 
    }
}