ExpertInspectionMapper.xml 534 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="org.springblade.archive.mapper.ExpertInspectionMapper">
  4. <select id="getListByFileId" resultType="org.springblade.archive.entity.ExpertInspection">
  5. select * from u_archive_expert_inspection
  6. where project_id = #{projectId} and file_id = #{fileId} and conclusion_id = #{conclusionId}
  7. and is_deleted = 0 and is_pass = 0
  8. </select>
  9. </mapper>