liurunyu
2023-11-27 37a145e95fb10378ffe1c298579669b95c16e338
1
2
3
4
5
6
7
8
9
10
11
<?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">
<!--namespace对应mapper接口所在的位置-->
<mapper namespace="com.dy.pipIrrGlobal.daoDemo.DemoTestMapper">
    <!--对应mapper接口中的方法public Integer queryCount();-->
    <select id="queryCount" resultType="java.lang.Integer">
        select count(*) from demo_test ;
    </select>
</mapper>