HallMapper.xml 383 B

1234567891011
  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.example.cinema.data.HallMapper">
  4. <select id="selectAllHall" resultMap="Hall">
  5. select * from hall
  6. </select>
  7. <resultMap id="Hall" type="com.example.cinema.vo.HallVO">
  8. </resultMap>
  9. </mapper>