Browse Source

修改包结构,数据库操作 demo 统一 orm 开头

v-1.5.x
yangkai.shen 7 years ago
parent
commit
db99e4b8d4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      spring-boot-demo-orm-mybatis/README.md

+ 1
- 1
spring-boot-demo-orm-mybatis/README.md View File

@@ -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"/>


Loading…
Cancel
Save