ContractProductFollowUpMapper.xml 724 B

123456789101112131415161718
  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.fjhx.sale.mapper.contract.ContractProductFollowUpMapper">
  4. <select id="getList" resultType="com.fjhx.sale.entity.contract.vo.ContractProductFollowUpVo">
  5. select cpfu.id,
  6. cpfu.contract_product_id,
  7. cpfu.result_type,
  8. cpfu.follow_up_time,
  9. cpfu.remark,
  10. cpfu.create_user,
  11. cpfu.create_time,
  12. cpfu.update_user,
  13. cpfu.update_time
  14. from contract_product_follow_up cpfu
  15. ${ew.customSqlSegment}
  16. </select>
  17. </mapper>