14 lines
541 B
XML
14 lines
541 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.mhd.bi.domain.biOverallOperation.repository.mapper.BiOverallOperationReportMapper">
|
|
|
|
<select id="selectLatestPayloadJson" resultType="java.lang.String">
|
|
select PAYLOAD_JSON
|
|
from NGWL_TEST_BI.BI_OVERALL_OPERATION_SNAPSHOT
|
|
where DEL_FLAG = 1
|
|
order by CREATE_TIME desc nulls last, ID desc
|
|
limit 1
|
|
</select>
|
|
</mapper>
|