add:依赖mybatisplus

This commit is contained in:
zhangzhiqiang
2022-12-14 15:43:50 +08:00
parent 8f2f400eab
commit 2e543adab5
18 changed files with 409 additions and 324 deletions

View File

@@ -54,6 +54,7 @@ security:
- /auth/login
- /auth/code
- /auth/logout
- /sys-user-do/**
# swagger
- /swagger-ui.html
- /swagger-resources/**
@@ -78,3 +79,12 @@ security:
- /api/localStorage/pictures
# 参数
- /api/param/getValueByCode
mybatis-plus:
configuration:
map-underscore-to-camel-case: true
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
mapper-locations:
- classpath:mapper/*.xml
global-config:
db-config:
id-type: INPUT

View File

@@ -0,0 +1,6 @@
<?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="org.nl.service.user.mapper.SysUserMapper">
</mapper>