place.sql.xml 575 B

123456789101112131415161718192021
  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="placeSqlMapper">
  4. <sql id="base_column">
  5. id,
  6. name
  7. </sql>
  8. <select id="findAll" parameterType="long" resultType="com.cloudcross.ssp.model.Place">
  9. select
  10. <include refid="base_column"/>
  11. from t_place
  12. </select>
  13. <select id="findById" parameterType="long" resultType="com.cloudcross.ssp.model.Place">
  14. select
  15. <include refid="base_column"/>
  16. from t_place
  17. where id = #{id}
  18. </select>
  19. </mapper>