This commit is contained in:
2023-06-21 15:55:40 +08:00
parent 42975464b1
commit 2097566b9a
6 changed files with 60 additions and 3 deletions

View File

@@ -143,5 +143,25 @@
</foreach>
</select>
<select id="getPileModelInfoByModelId" resultType="com.jsowell.pile.vo.web.PileModelInfoVO">
SELECT
t2.id as modelId,
t2.model_name as modelName,
t2.rated_power as ratedPower,
t2.rated_current as ratedCurrent,
t2.rated_voltage as ratedVoltage,
t2.speed_type as speedType,
t2.charger_pile_type as chargerPileType,
t2.connector_num as connectorNum,
t2.interface_standard as interfaceStandard,
t2.create_by as createBy,
t2.create_time as createTime,
t2.update_by as updateBy,
t2.update_time as updateTime
FROM
pile_model_info t2
WHERE
t2.del_flag = '0'
and t2.id = #{modelId,jdbcType=BIGINT}
</select>
</mapper>