|
@@ -64,6 +64,11 @@ namespace Edge.Core.Domain.FccStationInfo.Input
|
|
|
|
|
|
public string? WebSocketPort { get; set; }
|
|
public string? WebSocketPort { get; set; }
|
|
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ public string PaymentType { get; set; }
|
|
|
|
+
|
|
public FccStationInfo? ToComponent()
|
|
public FccStationInfo? ToComponent()
|
|
{
|
|
{
|
|
if (IsNotNorm()) return null;
|
|
if (IsNotNorm()) return null;
|
|
@@ -80,7 +85,8 @@ namespace Edge.Core.Domain.FccStationInfo.Input
|
|
CloudService = this.CloudService,
|
|
CloudService = this.CloudService,
|
|
MqttService = this.MqttService,
|
|
MqttService = this.MqttService,
|
|
IcardService = this.IcardService != null ? this.IcardService : "",
|
|
IcardService = this.IcardService != null ? this.IcardService : "",
|
|
- WebSocketPort = this.WebSocketPort
|
|
+ WebSocketPort = this.WebSocketPort,
|
|
|
|
+ PaymentType = this.PaymentType
|
|
};
|
|
};
|
|
}
|
|
}
|
|
|
|
|