InstrumentMapper.xml 764 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.caimei.www.mapper.InstrumentDao">
  4. <select id="getInstrumentById" resultType="com.caimei.www.pojo.page.PageContent">
  5. select id, type, title, keywords, description, headImage as image
  6. from cm_page
  7. where id = #{instrumentId} and type='2' and enabledStatus=1
  8. </select>
  9. <select id="getParametersByInstrumentId" resultType="com.caimei.www.pojo.page.Parameter">
  10. select id,
  11. pageId as parentId,
  12. name,
  13. content,
  14. type
  15. from cm_page_name_content
  16. where pageId=#{instrumentId}
  17. </select>
  18. </mapper>