InspectionRectifyMapper.xml 580 B

1234567891011121314
  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="org.springblade.manager.mapper.InspectionRectifyMapper">
  4. <delete id="deleteByInspectId">
  5. DELETE FROM m_inspection_rectify
  6. WHERE inspect_id = #{inspectId}
  7. </delete>
  8. <select id="getDTOList" resultType="org.springblade.manager.dto.InspectionRectifyDTO">
  9. select *
  10. from m_inspection_rectify
  11. where is_deleted = 0 and inspect_id = #{inspectId}
  12. </select>
  13. </mapper>