若依开源1.1.3发布
This commit is contained in:
@ -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.monitor.job.dao.IJobLogDao">
|
||||
<mapper namespace="com.ruoyi.project.monitor.job.mapper.JobLogMapper">
|
||||
|
||||
<resultMap type="JobLog" id="JobLogResult">
|
||||
<id property="jobLogId" column="job_log_id" />
|
||||
|
@ -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.monitor.job.dao.IJobDao">
|
||||
<mapper namespace="com.ruoyi.project.monitor.job.mapper.JobMapper">
|
||||
|
||||
<resultMap type="Job" id="JobResult">
|
||||
<id property="jobId" column="job_id" />
|
||||
|
@ -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.monitor.logininfor.dao.ILogininforDao">
|
||||
<mapper namespace="com.ruoyi.project.monitor.logininfor.mapper.LogininforMapper">
|
||||
|
||||
<resultMap type="Logininfor" id="LogininforResult">
|
||||
<id property="infoId" column="info_id" />
|
||||
|
@ -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.monitor.online.dao.IUserOnlineDao">
|
||||
<mapper namespace="com.ruoyi.project.monitor.online.mapper.UserOnlineMapper">
|
||||
|
||||
<resultMap type="UserOnline" id="UserOnlineResult">
|
||||
<id property="sessionId" column="sessionId" />
|
||||
|
@ -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.monitor.operlog.dao.IOperLogDao">
|
||||
<mapper namespace="com.ruoyi.project.monitor.operlog.mapper.OperLogMapper">
|
||||
|
||||
<resultMap type="OperLog" id="OperLogResult">
|
||||
<id property="operId" column="oper_id" />
|
||||
|
@ -11,16 +11,4 @@ PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
|
||||
<setting name="logImpl" value="SLF4J" /> <!-- 指定 MyBatis 所用日志的具体实现 -->
|
||||
</settings>
|
||||
|
||||
<typeAliases>
|
||||
<!-- 分页 -->
|
||||
<typeAlias type="com.ruoyi.framework.web.page.PageUtilEntity" alias="PageUtilEntity"/>
|
||||
</typeAliases>
|
||||
|
||||
<plugins>
|
||||
<plugin interceptor="com.ruoyi.framework.mybatis.ExecutorPageMethodInterceptor">
|
||||
<property name="dialect" value="mysql" />
|
||||
<property name="pageSqlId" value=".*pageInfoQuery.*" />
|
||||
</plugin>
|
||||
</plugins>
|
||||
|
||||
</configuration>
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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" />
|
||||
|
@ -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.tool.gen.dao.IGenDao">
|
||||
<mapper namespace="com.ruoyi.project.tool.gen.mapper.GenMapper">
|
||||
|
||||
<resultMap type="TableInfo" id="TableInfoResult">
|
||||
<id property="tableName" column="table_name" />
|
||||
|
Reference in New Issue
Block a user