1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <?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.EamEquipmentFluidMapper">
|
| <select id="queryPageList" resultType="org.jeecg.modules.eam.entity.EamEquipmentFluid">
| SELECT
| t1.id,
| t1.equipment_id equipmentId,
| t1.fluid_id fluidId,
| t2.fluid_code fluidCode,
| t2.fluid_name fluidName
| FROM eam_equipment_fluid t1
| INNER JOIN eam_fluid t2 ON t1.fluid_id = t2.id
| ${ew.customSqlSegment}
| </select>
| </mapper>
|
|