QuotaFormulaRuleConstantMapper.xml 622 B

123456789101112
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.xjrsoft.module.student.mapper.QuotaFormulaRuleConstantMapper">
  6. <select id="getPage" parameterType="com.xjrsoft.module.student.dto.QuotaFormulaRuleConstantPageDto" resultType="com.xjrsoft.module.student.vo.QuotaFormulaRuleConstantPageVo">
  7. select t.id, t.name, t.formula, t.bind_quota
  8. from quota_formula_rule_constant t
  9. where t.delete_mark = 0
  10. order by t.create_date
  11. </select>
  12. </mapper>