10 lines
410 B
XML
10 lines
410 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.lanhai.mapper.SurvConfigMapper">
|
|
|
|
<select id="getOneByTypeWithTenant" resultType="com.lanhai.entity.SurvConfig">
|
|
select * from surv_config where CONFIG_TYPE = #{type} AND TENANT_ID = #{tenantId} limit 1
|
|
</select>
|
|
|
|
</mapper>
|