ProcessFeedbackDao.xml 422 B

12345678910
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="platform.modules.company.dao.ProcessFeedbackDao">
  4. <!-- 查找这条进程反馈之后的反馈 -->
  5. <select id="getLaterFeedbackCount" resultType="Integer">
  6. SELECT COUNT(id) from c_process_feedback where id > #{id} and del_flag=0
  7. </select>
  8. </mapper>