修改EVCS修改,小程序电量显示3位

This commit is contained in:
yuyang 2022-07-26 13:55:18 +08:00
parent 001eb2cfbe
commit 38fb21c022
2 changed files with 4 additions and 4 deletions

View File

@ -575,7 +575,7 @@
cs.name as chargingStationName, cs.name as chargingStationName,
te.name as terminalName, te.name as terminalName,
ho.act_price as actPrice, ho.act_price as actPrice,
co.charging_degree as chargingDegree, ho.total_power as chargingDegree,
co.charging_time as chargingTime co.charging_time as chargingTime
FROM xhpc_history_order as ho FROM xhpc_history_order as ho
LEFT JOIN xhpc_charging_station as cs on cs.charging_station_id = ho.charging_station_id LEFT JOIN xhpc_charging_station as cs on cs.charging_station_id = ho.charging_station_id
@ -601,7 +601,7 @@
ho.act_price as actPrice, ho.act_price as actPrice,
ho.act_power_price as actPowerPrice, ho.act_power_price as actPowerPrice,
co.charging_time as chargingTime, co.charging_time as chargingTime,
co.charging_degree as chargingDegree, ho.total_power as chargingDegree,
ho.total_price as totalPrice, ho.total_price as totalPrice,
ho.power_price_total as powerPriceTotal, ho.power_price_total as powerPriceTotal,
ho.promotion_discount as promotionDiscount, ho.promotion_discount as promotionDiscount,

View File

@ -226,8 +226,8 @@
<if test="null != updateBy and '' != updateBy">update_by = #{updateBy},</if> <if test="null != updateBy and '' != updateBy">update_by = #{updateBy},</if>
<if test="null != updateTime">update_time = #{updateTime},</if> <if test="null != updateTime">update_time = #{updateTime},</if>
<if test="null != remark and '' != remark">remark = #{remark},</if> <if test="null != remark and '' != remark">remark = #{remark},</if>
<if test="null != operatorIdEvcs and '' != operatorIdEvcs">operator_id_evcs = #{operatorIdEvcs}</if> <if test="null != operatorIdEvcs and '' != operatorIdEvcs">operator_id_evcs = #{operatorIdEvcs},</if>
<if test="null != roleId">role_id = #{roleId}</if> <if test="null != roleId">role_id = #{roleId},</if>
</set> </set>
WHERE internet_user_id = #{internetUserId} WHERE internet_user_id = #{internetUserId}
</update> </update>