修改详情字段

This commit is contained in:
yuyang 2021-08-04 17:32:25 +08:00
parent 8e93590b73
commit 8eff8df45c
2 changed files with 12 additions and 4 deletions

View File

@ -327,7 +327,15 @@ public class XhpcChargingStationServiceImpl implements IXhpcChargingStationServi
XhpcRateDto xhpcRateDto = xhpcRateList.get(k);
XhpcRate xhpcRate =new XhpcRate();
xhpcRate.setChargingStationId(chargingStationId);
xhpcRate.setName(xhpcRateDto.getName());
if("00".equals(xhpcRateDto.getId())){
xhpcRate.setName("尖费率");
}else if ("01".equals(xhpcRateDto.getId())){
xhpcRate.setName("峰费率");
}else if ("02".equals(xhpcRateDto.getId())){
xhpcRate.setName("平费率");
}else{
xhpcRate.setName("谷费率");
}
xhpcRate.setPowerFee(xhpcRateDto.getPowerFee());
xhpcRate.setServiceFee(xhpcRateDto.getServiceFee());
xhpcRate.setRateModelId(rateModelId);

View File

@ -694,7 +694,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
power_fee as powerFee,
service_fee as serviceFee,
name as name,
rate_value as rateValue
rate_value as id
from xhpc_rate
where charging_station_id=#{chargingStationId} and del_flag =0
GROUP BY rate_value
@ -706,7 +706,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
rt.start_time as startTime,
replace(rt.end_time,'00:00:00','24:00:00') AS endTime,
rt.rate_id as rateId,
rt.rate_value as rateValue,
rt.rate_value as id,
ra.name as rateName
from xhpc_rate_time as rt
left join xhpc_rate as ra on ra.rate_id =rt.rate_id
@ -717,7 +717,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
rt.start_time as startTime,
replace(rt.end_time,'00:00:00','24:00:00') AS endTime,
rt.rate_id as rateId,
rt.rate_value as rateValue,
rt.rate_value as id,
ra.name as rateName
from xhpc_rate_time as rt
left join xhpc_rate as ra on ra.rate_id =rt.rate_id