<?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="org.jeecg.modules.eam.mapper.EamReportRepairMapper">
|
<select id="queryPageList" resultType="org.jeecg.modules.eam.entity.EamReportRepair">
|
select wmo.*, e.equipment_code, e.equipment_name, e.installation_position
|
from eam_report_repair wmo
|
inner join eam_equipment e
|
on wmo.equipment_id = e.id
|
${ew.customSqlSegment}
|
</select>
|
</mapper>
|