HotelStaffDao.xml 694 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="com.chuanghai.ihotel.dao.HotelStaffDao">
  4. <!-- 可根据自己的需求,是否要使用 -->
  5. <resultMap type="com.chuanghai.ihotel.entity.HotelStaffEntity" id="hotelStaffMap">
  6. <result property="id" column="id"/>
  7. <result property="cardNumber" column="card_number"/>
  8. <result property="phone" column="phone"/>
  9. <result property="username" column="username"/>
  10. <result property="position" column="position"/>
  11. <result property="statu" column="statu"/>
  12. </resultMap>
  13. </mapper>