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.
24 lines
1.1 KiB
24 lines
1.1 KiB
8 months ago
|
<?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.ruoyi.system.mapper.place.TdPlaceMapper">
|
||
|
|
||
|
<resultMap id="BaseResultMap" type="com.ruoyi.system.domain.place.TdPlace">
|
||
|
<id property="id" column="id" jdbcType="VARCHAR"/>
|
||
|
<result property="placeName" column="place_name" jdbcType="VARCHAR"/>
|
||
|
<result property="placeRule" column="place_rule" jdbcType="VARCHAR"/>
|
||
|
<result property="createBy" column="create_by" jdbcType="VARCHAR"/>
|
||
|
<result property="createTime" column="create_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="updateBy" column="update_by" jdbcType="VARCHAR"/>
|
||
|
<result property="updateTime" column="update_time" jdbcType="TIMESTAMP"/>
|
||
|
<result property="remark" column="remark" jdbcType="VARCHAR"/>
|
||
|
</resultMap>
|
||
|
|
||
|
<sql id="Base_Column_List">
|
||
|
id,place_name,place_rule,
|
||
|
create_by,create_time,update_by,
|
||
|
update_time,remark
|
||
|
</sql>
|
||
|
</mapper>
|