数字督察一体化平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
633 B

<?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.biutag.supervision.mapper.ModelClueMapper">
<select id="queryPage" resultType="com.biutag.supervision.pojo.model.ModelClueModel">
select *, m.model_name, d1.short_name involve_parent_depart_name from model_clue mc
left join model m on mc.model_id = m.id
left join sup_depart d on mc.involve_depart_id = d.id
left join sup_depart d1 on d.pid = d1.id
${ew.getCustomSqlSegment}
</select>
</mapper>