| | |
| | | /// <summary> |
| | | /// 实例唯一标识 |
| | | /// </summary> |
| | | [JsonPropertyName("id")] |
| | | //[JsonPropertyName("id")] |
| | | public string Id { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 实例名称 |
| | | /// </summary> |
| | | [JsonPropertyName("name")] |
| | | //[JsonPropertyName("name")] |
| | | public string Name { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// PLC型号 |
| | | /// </summary> |
| | | [JsonPropertyName("plcType")] |
| | | //[JsonPropertyName("plcType")] |
| | | public SiemensPLCType PLCType { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 监听端口 |
| | | /// </summary> |
| | | [JsonPropertyName("port")] |
| | | //[JsonPropertyName("port")] |
| | | public int Port { get; set; } |
| | | |
| | | /// <summary> |