若依开源1.1.3发布

This commit is contained in:
RuoYi
2018-05-13 15:10:15 +08:00
parent 20070163c2
commit 784c020fbd
154 changed files with 2243 additions and 2155 deletions

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.dept.dao.IDeptDao">
<mapper namespace="com.ruoyi.project.system.dept.mapper.DeptMapper">
<resultMap type="Dept" id="DeptResult">
<id property="deptId" column="dept_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.dict.dao.IDictDataDao">
<mapper namespace="com.ruoyi.project.system.dict.mapper.DictDataMapper">
<resultMap type="DictData" id="DictDataResult">
<id property="dictCode" column="dict_code" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.dict.dao.IDictTypeDao">
<mapper namespace="com.ruoyi.project.system.dict.mapper.DictTypeMapper">
<resultMap type="DictType" id="DictTypeResult">
<id property="dictId" column="dict_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.menu.dao.IMenuDao">
<mapper namespace="com.ruoyi.project.system.menu.mapper.MenuMapper">
<resultMap type="Menu" id="MenuResult">
<id property="menuId" column="menu_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.post.dao.IPostDao">
<mapper namespace="com.ruoyi.project.system.post.mapper.PostMapper">
<resultMap type="Post" id="PostResult">
<id property="postId" column="post_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.role.dao.IRoleDao">
<mapper namespace="com.ruoyi.project.system.role.mapper.RoleMapper">
<resultMap type="Role" id="RoleResult">
<id property="roleId" column="role_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.role.dao.IRoleMenuDao">
<mapper namespace="com.ruoyi.project.system.role.mapper.RoleMenuMapper">
<resultMap type="RoleMenu" id="RoleMenuResult">
<result property="roleId" column="role_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.user.dao.IUserDao">
<mapper namespace="com.ruoyi.project.system.user.mapper.UserMapper">
<resultMap type="User" id="UserResult">
<id property="userId" column="user_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.user.dao.IUserPostDao">
<mapper namespace="com.ruoyi.project.system.user.mapper.UserPostMapper">
<resultMap type="UserPost" id="UserPostResult">
<result property="userId" column="user_id" />

View File

@@ -2,7 +2,7 @@
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.ruoyi.project.system.user.dao.IUserRoleDao">
<mapper namespace="com.ruoyi.project.system.user.mapper.UserRoleMapper">
<resultMap type="UserRole" id="UserRoleResult">
<result property="userId" column="user_id" />