InvestmentIntentionDao.xml 490 B

123456789101112
  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.carrier.dao.InvestmentIntentionDao">
  4. <select id="findByInvestmentId" resultType="platform.modules.carrier.entity.InvestmentIntention">
  5. SELECT *
  6. FROM ic_investment_intention
  7. WHERE del_flag != 1 AND investment_id = #{id}
  8. ORDER BY create_time DESC
  9. </select>
  10. </mapper>