QuotaFormulaRuleAttributeMapper.xml 613 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.QuotaFormulaRuleAttributeMapper">
  6. <select id="getPage" parameterType="com.xjrsoft.module.student.dto.QuotaFormulaRuleAttributePageDto" resultType="com.xjrsoft.module.student.vo.QuotaFormulaRuleAttributePageVo">
  7. select t.id, t.name, t.formula
  8. from quota_formula_rule_attribute t
  9. where t.delete_mark = 0
  10. order by t.create_date
  11. </select>
  12. </mapper>