<?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="cn.gistack.sm.sms.mapper.SmsResultMapper">
|
|
<!--自定义分页列表查询-->
|
<select id="selectSmsResultPage" resultType="cn.gistack.sm.sms.vo.SmsResultVO">
|
select * from sm_sms_result where 1=1 and is_deleted = 0
|
order by id desc
|
</select>
|
|
</mapper>
|