Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- using BPASmart.Model;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
-
- namespace BPASmart.Model
- {
- public class Siemens : ICommunicationDevice
- {
-
- /// <summary>
- /// IP地址
- /// </summary>
- public string IP { get; set; } = "192.168.0.1";
-
- /// <summary>
- /// 插槽号
- /// </summary>
- public int Slot { get; set; } = 0;
-
- /// <summary>
- /// 机架号
- /// </summary>
- public int Rack { get; set; } = 0;
-
- /// <summary>
- /// 端口号,默认 102
- /// </summary>
- public int PortNum { get; set; } = 102;
-
- /// <summary>
- /// PLC 类型
- /// </summary>
- public string PlcType { get; set; }
-
- }
-
-
- }
|