#
luxiaotao1123
2024-01-29 035a523a227dc3d42bf63d6a9afad0ba4fab326a
1
2
3
4
5
6
7
8
9
10
11
<?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.zy.asrs.common.openapi.mapper.HostKeyMapper">
 
    <select id="getList" resultType="com.zy.asrs.common.openapi.entity.HostKey">
        select sh.id host_id,ohk.* from sys_host sh
        left join openapi_host_key ohk
        on ohk.host_id = sh.id
    </select>
 
</mapper>