GeoEarthMapper.xml 594 B

1234567891011121314151617
  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="cn.reghao.tnb.content.app.geo.db.mapper.GeoEarthMapper">
  4. <insert id="save" useGeneratedKeys="true" keyProperty="id">
  5. insert into geo_earth
  6. (`name`,`template`)
  7. values
  8. (#{name},#{template})
  9. </insert>
  10. <select id="findByName" resultType="cn.reghao.tnb.content.app.geo.model.po.GeoEarth">
  11. select *
  12. from geo_earth
  13. where `name`=#{name}
  14. </select>
  15. </mapper>