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.yfd.platform.modules.experimentalData.mapper.TsTaskMapper">
|
|
<select id="selectMaxTaskCode" resultType="java.lang.String">
|
|
SELECT task_code FROM ts_task
|
|
ORDER BY task_code DESC
|
|
LIMIT 1
|
|
</select>
|
|
</mapper>
|