diff --git a/xhpc-modules/xhpc-charging-station/src/main/resources/mapper/XhpcChargingStationMapper.xml b/xhpc-modules/xhpc-charging-station/src/main/resources/mapper/XhpcChargingStationMapper.xml index acb750ab..6ab9e7d1 100644 --- a/xhpc-modules/xhpc-charging-station/src/main/resources/mapper/XhpcChargingStationMapper.xml +++ b/xhpc-modules/xhpc-charging-station/src/main/resources/mapper/XhpcChargingStationMapper.xml @@ -506,7 +506,10 @@ remark, - station_type + station_type, + + + operator_id_evcs @@ -586,7 +589,10 @@ #{remark}, - #{stationType} + #{stationType}, + + + #{operatorIdEvcs} diff --git a/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcChargingStation.java b/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcChargingStation.java index 37f3adf1..6df37a5e 100644 --- a/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcChargingStation.java +++ b/xhpc-modules/xhpc-common/src/main/java/com/xhpc/common/domain/XhpcChargingStation.java @@ -100,6 +100,21 @@ public class XhpcChargingStation extends BaseEntity { @Excel(name = "温馨提示说明") private String reminderInstructions; + /** + * 对接第三方平台及监管平台的operatorId + */ + private String operatorIdEvcs; + + public String getOperatorIdEvcs() { + + return operatorIdEvcs; + } + + public void setOperatorIdEvcs(String operatorIdEvcs) { + + this.operatorIdEvcs = operatorIdEvcs; + } + public void setChargingStationId(Long chargingStationId) { this.chargingStationId = chargingStationId;