11 lines
365 B
XML
Raw Normal View History

2026-03-10 16:40:19 +08:00
<?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._3e.dubdao.DubRegionDao">
<select id="findByType" resultType="com.dub.entity.DubRegion">
SELECT type, title, description, cover, difficulty
FROM dubregion ORDER BY orderid
</select>
</mapper>