TaskFileMapper.xml 411 B

123456789
  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="com.wtkj.mapper.TaskFileMapper">
  4. <select id="getByBladeFileId" resultType="com.wtkj.entity.TaskFile">
  5. select * from blade_task_file where is_deleted = 0 and task_id = #{param1} and blade_file_id = #{param2}
  6. </select>
  7. </mapper>