lixiaojun
2024-11-06 a5f3c47ee959183e3059fc6672b4b07f99eb9c1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace IStation.Server
{
    /// <summary>
    /// 
    /// </summary>
    public class EMWSEtaAnalyzerFactory
    {
        /// <summary>
        /// 创建分析器
        /// </summary>
        public static IEMWSEtaAnalyzer CreateAnalyzer(Yw.Model.EtaAnalyConfigure configure)
        {
            IEMWSEtaAnalyzer analyzer = null;
            if (configure.ObjectType == IStation.DataType.LogicSite && configure.ObjectID == 1724694117545545728)
            {
                analyzer = new EMWSEtaCustomAnalyzer4长兴输水泵房();
            }
            return analyzer;
        }
    }
}