Files
fys-Multi-tenant/fys-modules/fys-demo/src/main/resources/mapper/demo/TestDemoMapper.xml

12 lines
379 B
XML
Raw Normal View History

2025-06-27 09:08:28 +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">
2025-06-27 11:07:20 +08:00
<mapper namespace="com.fuyuanshen.demo.mapper.TestDemoMapper">
2025-06-27 09:08:28 +08:00
2025-06-27 10:23:57 +08:00
<select id="customPageList" resultType="com.fuyuanshen.demo.domain.vo.TestDemoVo">
2025-06-27 09:08:28 +08:00
SELECT * FROM test_demo ${ew.customSqlSegment}
</select>
</mapper>