|
@@ -36,6 +36,7 @@ namespace Edge.Core.Domain.FccStationInfo.Output
|
|
|
this.MqttService = fccStationInfo.MqttService;
|
|
|
this.IcardService = fccStationInfo.IcardService;
|
|
|
this.WebSocketPort = fccStationInfo.WebSocketPort;
|
|
|
+ this.PaymentType = fccStationInfo.PaymentType;
|
|
|
}
|
|
|
/// <summary>
|
|
|
/// id
|
|
@@ -93,13 +94,13 @@ namespace Edge.Core.Domain.FccStationInfo.Output
|
|
|
public string? IcardService { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 本地 fcc 与油机 socket 通讯端口
|
|
|
+ /// 本地 fcc 与 fcc 页面 webSocket 端口
|
|
|
/// </summary>
|
|
|
- public string ServicePort { get; set; }
|
|
|
+ public string WebSocketPort { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
- /// 本地 fcc 与 fcc 页面 webSocket 端口
|
|
|
+ /// 支付方式,逗号隔开
|
|
|
/// </summary>
|
|
|
- public string WebSocketPort { get; set; }
|
|
|
+ public string PaymentType { get; set; }
|
|
|
}
|
|
|
}
|