24 lines
792 B
XML
24 lines
792 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE mapper
|
|
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
<mapper namespace="com.template.mapper.CarMapper">
|
|
|
|
<select id="findCarByVin" resultType="com.template.domain.SysCar">
|
|
select * from sys_car where car_vin=#{carVin}
|
|
</select>
|
|
<select id="carMapper" resultType="com.template.domain.CarType">
|
|
select * from car_type where id=#{carTypeId}
|
|
</select>
|
|
<select id="findAllCars" resultType="com.template.domain.resp.CarTypeResp">
|
|
SELECT
|
|
car_type.*,
|
|
t_template.template_name
|
|
FROM
|
|
car_type
|
|
LEFT JOIN t_template ON car_type.template_id = t_template.template_id
|
|
</select>
|
|
|
|
|
|
</mapper>
|