Commit dc0d32d3 by YANGYANG

base mapper位置整理提交

parent 3570a20d
......@@ -8,7 +8,9 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
/*
@MapperScan("com.founder.servicebase.mapper")
*/
public class EduConfig {
/**
......
......@@ -8,7 +8,7 @@ import com.founder.commonutils.model.newPublicEntity.ThirdToken;
import com.founder.commonutils.model.newPublicEntity.Token;
import com.founder.commonutils.util.JwtUser;
import com.founder.commonutils.util.KeyUtil;
import com.founder.servicebase.logs.mapper.SkSysLogMapper;
import com.founder.servicebase.logs.mapper.mysqlMapper.SkSysLogMapper;
import io.jsonwebtoken.Claims;
import lombok.SneakyThrows;
import org.apache.ibatis.session.SqlSessionFactory;
......
package com.founder.servicebase.logs.mapper;
package com.founder.servicebase.logs.mapper.mysqlMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.founder.commonutils.model.newPublicEntity.SkServiceApply;
......
<?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.founder.servicebase.logs.mapper.SkServiceApplyMapper">
<mapper namespace="com.founder.servicebase.logs.mapper.mysqlMapper.SkServiceApplyMapper">
<select id="count" resultType="java.lang.Integer">
......
package com.founder.servicebase.logs.mapper;
package com.founder.servicebase.logs.mapper.mysqlMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.founder.servicebase.logs.LogCount;
......
<?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.founder.servicebase.logs.mapper.SkSysLogMapper">
<mapper namespace="com.founder.servicebase.logs.mapper.mysqlMapper.SkSysLogMapper">
<select id="countTotal" resultType="com.founder.servicebase.logs.LogCount">
......
......@@ -4,7 +4,7 @@ package com.founder.servicebase.logs.service.impl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.servicebase.logs.LogCount;
import com.founder.servicebase.logs.SkSysLog;
import com.founder.servicebase.logs.mapper.SkSysLogMapper;
import com.founder.servicebase.logs.mapper.mysqlMapper.SkSysLogMapper;
import com.founder.servicebase.logs.param.LogCountParam;
import com.founder.servicebase.logs.service.SkSysLogService;
import org.springframework.stereotype.Service;
......
package com.founder.servicebase.mapper;
package com.founder.servicebase.mapper.mysqlMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.founder.commonutils.model.newPublicEntity.SkDictionary;
......
package com.founder.servicebase.mapper;
package com.founder.servicebase.mapper.mysqlMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.founder.commonutils.model.newPublicEntity.SkInterceptor;
......
package com.founder.servicebase.mapper;
package com.founder.servicebase.mapper.mysqlMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.founder.commonutils.model.newPublicEntity.SkService;
......
package com.founder.servicebase.mapper;
package com.founder.servicebase.mapper.mysqlMapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.founder.commonutils.model.newPublicEntity.SysUser;
......
<?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.founder.servicebase.mapper.SysUserMapper">
<mapper namespace="com.founder.servicebase.mapper.mysqlMapper.SysUserMapper">
<select id="getUsersByNamePassword" resultType="com.founder.commonutils.model.newPublicEntity.SysUsers">
select * from sys_users
......
......@@ -3,7 +3,7 @@ package com.founder.servicebase.service.serviceimpl;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.SkDictionary;
import com.founder.servicebase.mapper.SkDictionaryMapper;
import com.founder.servicebase.mapper.mysqlMapper.SkDictionaryMapper;
import com.founder.servicebase.service.SkDictionaryService;
import org.springframework.stereotype.Service;
......
......@@ -3,7 +3,7 @@ package com.founder.servicebase.service.serviceimpl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.SkInterceptor;
import com.founder.servicebase.mapper.SkInterceptorMapper;
import com.founder.servicebase.mapper.mysqlMapper.SkInterceptorMapper;
import com.founder.servicebase.service.SkInterceptorService;
import org.springframework.stereotype.Service;
......
......@@ -4,7 +4,7 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.SkServiceApply;
import com.founder.commonutils.model.vo.param.SkServiceApplyParam;
import com.founder.commonutils.model.vo.response.SkServiceApplyVO;
import com.founder.servicebase.logs.mapper.SkServiceApplyMapper;
import com.founder.servicebase.logs.mapper.mysqlMapper.SkServiceApplyMapper;
import com.founder.servicebase.service.SkServiceApplyService;
import org.springframework.stereotype.Service;
......
......@@ -3,7 +3,7 @@ package com.founder.servicebase.service.serviceimpl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.SkService;
import com.founder.servicebase.mapper.SkServiceMapper;
import com.founder.servicebase.mapper.mysqlMapper.SkServiceMapper;
import com.founder.servicebase.service.SkServiceService;
import org.springframework.stereotype.Service;
......
......@@ -4,7 +4,7 @@ package com.founder.servicebase.service.serviceimpl;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.founder.commonutils.model.newPublicEntity.SysUser;
import com.founder.servicebase.mapper.SysUserMapper;
import com.founder.servicebase.mapper.mysqlMapper.SysUserMapper;
import com.founder.servicebase.service.SysUserService;
import org.springframework.stereotype.Service;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment