基本完成
This commit is contained in:
@@ -10,14 +10,14 @@ spring:
|
||||
name: EasyJavaTemplate
|
||||
#MySQL数据库相关配置信息
|
||||
datasource:
|
||||
url: jdbc:mysql://10.232.112.35:3306/rensijin-cchs?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
||||
url: jdbc:mysql://192.168.100.201:3306/rensijin-cchs?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
|
||||
username: root #数据库账号
|
||||
password: -w9M627JZeYo5p^3lbH0mqDa #数据库密码
|
||||
password: Abc123654 #数据库密码
|
||||
driver-class-name: com.mysql.jdbc.Driver
|
||||
type: com.alibaba.druid.pool.DruidDataSource
|
||||
#Redis 缓存相关参数配置
|
||||
redis:
|
||||
host: 10.232.12.111
|
||||
host: 127.0.0.1
|
||||
port: 6379 #端口
|
||||
timeout: 5000 #连接超时 毫秒
|
||||
password: Redis11 #密码
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,17 +0,0 @@
|
||||
<?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="cn.wujiangbo.mapper.app.AppSuggestionMapper">
|
||||
|
||||
<select id="selectMySqlPage" resultType="cn.wujiangbo.domain.app.AppSuggestion">
|
||||
select t1.*, t2.real_name as createUserName
|
||||
from app_suggestion t1
|
||||
left join sys_user t2 on t1.user_id = t2.id
|
||||
<where>
|
||||
<if test="query.keyword != null and query.keyword != '' ">
|
||||
and t1.complaint like concat('%', #{query.keyword}, '%')
|
||||
</if>
|
||||
</where>
|
||||
order by t1.id desc
|
||||
</select>
|
||||
|
||||
</mapper>
|
||||
Binary file not shown.
@@ -1,14 +0,0 @@
|
||||
<?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="cn.wujiangbo.mapper.app.AppSwiperMapper">
|
||||
|
||||
<select id="selectMySqlPage" resultType="cn.wujiangbo.domain.app.AppSwiper">
|
||||
select t1.*
|
||||
from app_swiper t1
|
||||
<where>
|
||||
<if test="query.keyword != null and query.keyword != '' ">
|
||||
and t1.img_desc like concat('%', #{query.keyword}, '%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
Binary file not shown.
@@ -1,14 +0,0 @@
|
||||
<?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="cn.wujiangbo.mapper.app.AppUserMapper">
|
||||
|
||||
<select id="selectMySqlPage" resultType="cn.wujiangbo.domain.app.AppUser">
|
||||
select t1.*
|
||||
from app_user t1
|
||||
<where>
|
||||
<if test="query.keyword != null and query.keyword != '' ">
|
||||
and t1.login_name like concat('%', #{query.keyword}, '%')
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
||||
<?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="cn.wujiangbo.mapper.system.SysUserMapper">
|
||||
|
||||
</mapper>
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,8 +0,0 @@
|
||||
{
|
||||
// 官网地址:https://smart-doc-group.github.io/#/?id=smart-doc
|
||||
"serverUrl": "http://localhost:8002", // 服务器地址,非必须
|
||||
"isStrict": false, //是否用严格模式,严格模式强制检查注释
|
||||
"allInOne": true, // 是否将文档合并到一个文件中,一般推荐为true
|
||||
"outPath": "./src/main/resources/SmartDoc", //文档的输出路径
|
||||
"projectName": "EasyJavaTemplate" //指定项目名称,用于显示在文档中
|
||||
}
|
||||
Reference in New Issue
Block a user