duheng
2024-03-26 11c7908bcc2ca699e88b7a0a17bc32e45521c349
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
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using System.Linq;
 
namespace IStation.WinFrmUI.Monitor
{
    /// <summary>
    /// 数据来源映射
    /// </summary>     
 
    public class DataSourcesMapper
    {
        /// <summary>
        /// 
        /// </summary>
        public DataSourcesMapper() { }
 
        /// <summary>
        /// 
        /// </summary>
        public DataSourcesMapper(long sysId, string signId, Coefficients coefficients)
        {
            this.SysID = sysId;
            this.SignID = signId;
            this.Coefficients = coefficients;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public DataSourcesMapper(DataSourcesMapper rhs)
        {
            this.SysID = rhs.SysID;
            this.SignID = rhs.SignID;
            this.Coefficients = rhs.Coefficients;
        }
 
        /// <summary>
        /// 系统标识
        /// </summary>
        public long SysID { get; set; }
 
        /// <summary>
        /// 外部标识
        /// </summary>
        public string SignID { get; set; }
 
        /// <summary>
        /// 转换系数
        /// </summary> 
        public Coefficients Coefficients { get; set; }
 
    }
}