123456789101112 |
- <?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.xjrsoft.module.student.mapper.QuotaFormulaRuleConstantMapper">
- <select id="getPage" parameterType="com.xjrsoft.module.student.dto.QuotaFormulaRuleConstantPageDto" resultType="com.xjrsoft.module.student.vo.QuotaFormulaRuleConstantPageVo">
- select t.id, t.name, t.formula, t.bind_quota
- from quota_formula_rule_constant t
- where t.delete_mark = 0
- order by t.create_date
- </select>
- </mapper>
|