AttachmentMapper.xml 602 B

12345678910111213141516
  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.fuzamei.mapperInterface.AttachmentMapper">
  4. <select id="queryIfHasTheSameAttachmentId" resultType="int">
  5. select count(*) from attachment where attachment_id=#{attachmentId}
  6. </select>
  7. <select id="queryIfHasTheSameAttachmentIdS" resultType="int">
  8. select count(*) from attachment where attachment_id in
  9. <foreach collection="set" item="item" open="(" close=")" separator=",">
  10. #{item}
  11. </foreach>
  12. </select>
  13. </mapper>