duheng
2024-05-22 f0aaa59c3bb1ef75affcacadbcc8fae21149f52c
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
namespace IStation
{
    internal class Paras
    {
        public Paras()
        {
 
        }
        public static Paras BuildEmpty()
        {
            var empty = new Paras();
            empty.File = new Paras_File();
            empty.MemoryCache = new Paras_MemoryCache();
            empty.DataImport = new Paras_DataImport();
            empty.DispSetting = new Paras_DispSetting();
            return empty;
        }
        /// <summary>
        /// 文件参数
        /// </summary>
        public Paras_File File { get; set; }
 
        /// <summary>
        /// 内存缓存参数
        /// </summary>
        public Paras_MemoryCache MemoryCache { get; set; }
 
        /// <summary>
        /// 数据导入参数
        /// </summary>
        public Paras_DataImport DataImport { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public Paras_DispSetting DispSetting { get; set; }
    }
}