Blame view

CollectInfoMapper.xml 438 Bytes
涂亚平 committed
1 2 3 4
<?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.subsidy.mapper.CollectInfoMapper">

涂亚平 committed
5
    <select id="info" resultType="com.subsidy.vo.InfoVO">
涂亚平 committed
6 7 8 9 10 11 12 13 14
        SELECT
            *
        FROM
            collect_info t
            where t.delete_date is null
            order by t.create_date desc
    </select>

</mapper>