Skip to content

Commit

Permalink
修改包结构,数据库操作 demo 统一 orm 开头
Browse files Browse the repository at this point in the history
  • Loading branch information
xkcoding committed Nov 21, 2017
1 parent b027bcb commit db99e4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spring-boot-demo-orm-mybatis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public interface MybatisUserMapper extends MyMapper<MybatisUser> {
<?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.xkcoding.springbootdemoormmybatis.mapper.MybatisUserMapper">
<resultMap id="mybatisUserMap" type="com.xkcoding.springbootdemomybatis.model.MybatisUser">
<resultMap id="mybatisUserMap" type="com.xkcoding.springbootdemoormmybatis.model.MybatisUser">
<id property="id" column="id"/>

<result property="name" column="name"/>
Expand Down

0 comments on commit db99e4b

Please sign in to comment.