You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
752 B

<?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.qniao.dam.infrastructure.persistent.dao.puc.PointUpgradeConfigDao">
<select id="page" resultType="com.qniao.dam.api.query.puc.user.response.UserPagePointUpgradeConfigVo">
SELECT
id,
original_type,
upgrade_type,
upgrade_point,
sort,
`enable`,
remark
FROM
da_point_upgrade_config
where is_delete=0
<if test="queryParams.enable != null">
AND enable = #{queryParams.enable}
</if>
ORDER BY sort ASC
</select>
</mapper>