From 94bbaadf6c8a642e33b8ca81231259513b9f72ec Mon Sep 17 00:00:00 2001 From: jinpengyong <jpy123456> Date: Mon, 20 Jul 2020 10:11:44 +0800 Subject: [PATCH] update --- src/main/resources/mapper/AreaMapper.xml | 5 ----- 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/src/main/resources/mapper/AreaMapper.xml b/src/main/resources/mapper/AreaMapper.xml index 092ecf5..2f2048c 100644 --- a/src/main/resources/mapper/AreaMapper.xml +++ b/src/main/resources/mapper/AreaMapper.xml @@ -1,11 +1,6 @@ <?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.moral.mapper.AreaMapper"> - <resultMap id="BaseResultMap" type="com.moral.entity.Area"> - <id column="area_code" property="areaCode" jdbcType="INTEGER"/> - <result column="area_name" property="areaName" jdbcType="VARCHAR"/> - <result column="city_code" property="cityCode" jdbcType="INTEGER"/> - </resultMap> <select id="getAreaByAreaCode" resultType="com.moral.entity.Area"> select * from area where area_code=#{areaCode} </select> -- Gitblit v1.8.0