You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.6 KiB

<?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.hc.tripbusiness.mapper.SceneryMapper">
<resultMap type="scenery" id="SceneryMap">
<result property="sceneryId" column="scenery_id" jdbcType="INTEGER"/>
<result property="sceneryName" column="scenery_name" jdbcType="VARCHAR"/>
<result property="sceneryNotes" column="scenery_notes" jdbcType="VARCHAR"/>
<result property="sceneryIndex" column="scenery_index" jdbcType="INTEGER"/>
<result property="sceneryIntroduce" column="scenery_introduce" jdbcType="VARCHAR"/>
<result property="sceneryLogo" column="scenery_logo" jdbcType="VARCHAR"/>
<result property="createTime" column="create_time" jdbcType="BIGINT"/>
<result property="updateTime" column="update_time" jdbcType="BIGINT"/>
<result property="startTime" column="start_time" jdbcType="INTEGER"/>
<result property="endTime" column="end_time" jdbcType="INTEGER"/>
<result property="phone" column="phone" jdbcType="VARCHAR"/>
<result property="website" column="website" jdbcType="VARCHAR"/>
<result property="traffic" column="traffic" jdbcType="VARCHAR"/>
</resultMap>
<sql id="Base_Column_List">
scenery_id,
scenery_name,
scenery_notes,
scenery_index,
scenery_introduce,
scenery_logo,
create_time,
update_time,
start_time,
end_time,
phone,
website,
traffic
</sql>
</mapper>