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.
15 lines
644 B
15 lines
644 B
<?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.yami.shop.dao.AreaMapper">
|
|
<resultMap id="BaseResultMap" type="com.yami.shop.bean.model.Area">
|
|
<!--
|
|
WARNING - @mbg.generated
|
|
-->
|
|
<id column="area_id" jdbcType="BIGINT" property="areaId"/>
|
|
<result column="area_name" jdbcType="VARCHAR" property="areaName"/>
|
|
<result column="parent_id" jdbcType="BIGINT" property="parentId"/>
|
|
<result column="level" jdbcType="INTEGER" property="level"/>
|
|
</resultMap>
|
|
|
|
</mapper>
|