|
@@ -0,0 +1,43 @@
|
|
|
+<?xml version="1.0" encoding="UTF-8"?>
|
|
|
+<!DOCTYPE mapper
|
|
|
+ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
+ "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
+<mapper namespace="com.zhentao.hotel.mapper.HotelsMapper">
|
|
|
+
|
|
|
+ <resultMap id="BaseResultMap" type="com.zhentao.hotel.domain.Hotels">
|
|
|
+ <id property="hotelid" column="HotelID" jdbcType="BIGINT"/>
|
|
|
+ <result property="sortId" column="sort_id" jdbcType="BIGINT"/>
|
|
|
+ <result property="hotelname" column="HotelName" jdbcType="VARCHAR"/>
|
|
|
+ <result property="address" column="Address" jdbcType="VARCHAR"/>
|
|
|
+ <result property="city" column="City" jdbcType="VARCHAR"/>
|
|
|
+ <result property="stateprovince" column="StateProvince" jdbcType="VARCHAR"/>
|
|
|
+ <result property="country" column="Country" jdbcType="VARCHAR"/>
|
|
|
+ <result property="postalcode" column="PostalCode" jdbcType="VARCHAR"/>
|
|
|
+ <result property="phonenumber" column="PhoneNumber" jdbcType="VARCHAR"/>
|
|
|
+ <result property="email" column="Email" jdbcType="VARCHAR"/>
|
|
|
+ <result property="website" column="Website" jdbcType="VARCHAR"/>
|
|
|
+ <result property="starrating" column="StarRating" jdbcType="INTEGER"/>
|
|
|
+ <result property="type" column="Type" jdbcType="VARCHAR"/>
|
|
|
+ <result property="brand" column="Brand" jdbcType="VARCHAR"/>
|
|
|
+ <result property="amenities" column="Amenities" jdbcType="VARCHAR"/>
|
|
|
+ <result property="services" column="Services" jdbcType="VARCHAR"/>
|
|
|
+ <result property="price" column="price" jdbcType="DECIMAL"/>
|
|
|
+ <result property="rating" column="Rating" jdbcType="DECIMAL"/>
|
|
|
+ <result property="reviewcount" column="ReviewCount" jdbcType="INTEGER"/>
|
|
|
+ <result property="description" column="Description" jdbcType="VARCHAR"/>
|
|
|
+ <result property="imageurl" column="ImageURL" jdbcType="VARCHAR"/>
|
|
|
+ <result property="createtime" column="CreateTime" jdbcType="TIMESTAMP"/>
|
|
|
+ <result property="updatetime" column="UpdateTime" jdbcType="TIMESTAMP"/>
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="Base_Column_List">
|
|
|
+ HotelID,sort_id,HotelName,
|
|
|
+ Address,City,StateProvince,
|
|
|
+ Country,PostalCode,PhoneNumber,
|
|
|
+ Email,Website,StarRating,
|
|
|
+ Type,Brand,Amenities,
|
|
|
+ Services,price,Rating,
|
|
|
+ ReviewCount,Description,ImageURL,
|
|
|
+ CreateTime,UpdateTime
|
|
|
+ </sql>
|
|
|
+</mapper>
|