修改字典和token过期时间

This commit is contained in:
songjinsheng 2022-05-31 10:47:05 +08:00
parent bd12230d7e
commit a4976eff13
8 changed files with 58 additions and 34 deletions

View File

@ -120,10 +120,6 @@ public class AorestCoverageController {
int NUM = service.IntoUpload(value); int NUM = service.IntoUpload(value);
domain.setPictureCode(value.getFileId()); domain.setPictureCode(value.getFileId());
// domain.setCreatedTime(LocalDateTime.now());
//
//
// thematicMapService.save(domain);
if (NUM>0) if (NUM>0)
{ {
return AjaxResult.success(); return AjaxResult.success();
@ -142,7 +138,7 @@ public class AorestCoverageController {
@ApiOperation(value = "文件查询",httpMethod = "GET") @ApiOperation(value = "文件查询",httpMethod = "GET")
public AjaxResult selectUpload(HttpServletResponse response, HttpServletRequest request,@RequestBody UploadFile upload) public AjaxResult selectUpload(HttpServletResponse response, HttpServletRequest request,@RequestBody UploadFile upload)
{ {
List<UploadFile> eastVOSList= service.selectUpload(upload); List<UploadFile> eastVOSList= service.selectUpload(upload.getFileId(),upload.getFileName());
return AjaxResult.success(eastVOSList); return AjaxResult.success(eastVOSList);
} }
@ -167,7 +163,7 @@ public class AorestCoverageController {
@ApiOperation(value = "字典查询",httpMethod = "POST") @ApiOperation(value = "字典查询",httpMethod = "POST")
public AjaxResult Dictionary(@RequestBody Dictionary dic) public AjaxResult Dictionary(@RequestBody Dictionary dic)
{ {
List<Dictionary> diclist=service.selectDic(dic); List<Dictionary> diclist=service.selectDic(dic.getCodingType(),dic.getCodingType1(), dic.getCodingType2());
return AjaxResult.success(diclist); return AjaxResult.success(diclist);
} }

View File

@ -103,6 +103,23 @@ mybatis:
# 加载全局的配置文件 # 加载全局的配置文件
configLocation: classpath:mybatis/mybatis-config.xml configLocation: classpath:mybatis/mybatis-config.xml
## 滑块验证码
#aj:
# captcha:
# # 缓存类型
# cache-type: redis
# # blockPuzzle 滑块 clickWord 文字点选 default默认两者都实例化
# type: blockPuzzle
# # 右下角显示字
# water-mark: ruoyi.vip
# # 校验滑动拼图允许误差偏移量(默认5像素)
# slip-offset: 5
# # aes加密坐标开启或者禁用(true|false)
# aes-status: true
# # 滑动干扰项(0/1/2)
# interference-options: 2
# PageHelper分页插件 # PageHelper分页插件
pagehelper: pagehelper:
helperDialect: mysql helperDialect: mysql

View File

@ -35,6 +35,14 @@
<artifactId>druid-spring-boot-starter</artifactId> <artifactId>druid-spring-boot-starter</artifactId>
</dependency> </dependency>
<!-- &lt;!&ndash; 滑块验证码 &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>com.github.anji-plus</groupId>-->
<!-- <artifactId>captcha-spring-boot-starter</artifactId>-->
<!-- <version>1.2.7</version>-->
<!-- </dependency>-->
<!-- 验证码 --> <!-- 验证码 -->
<dependency> <dependency>
<groupId>com.github.penggle</groupId> <groupId>com.github.penggle</groupId>

View File

@ -27,7 +27,7 @@ import com.ruoyi.system.service.ISysUserService;
/** /**
* 登录校验方法 * 登录校验方法
* *
* @author ruoyi * @author ruoyi
*/ */
@Component @Component
@ -41,7 +41,7 @@ public class SysLoginService
@Autowired @Autowired
private RedisCache redisCache; private RedisCache redisCache;
@Autowired @Autowired
private ISysUserService userService; private ISysUserService userService;
@ -50,7 +50,7 @@ public class SysLoginService
/** /**
* 登录验证 * 登录验证
* *
* @param username 用户名 * @param username 用户名
* @param password 密码 * @param password 密码
* @param code 验证码 * @param code 验证码
@ -95,7 +95,7 @@ public class SysLoginService
/** /**
* 校验验证码 * 校验验证码
* *
* @param username 用户名 * @param username 用户名
* @param code 验证码 * @param code 验证码
* @param uuid 唯一标识 * @param uuid 唯一标识

View File

@ -21,7 +21,8 @@ public interface AorestCoverageMapper {
Integer IntoUpload(UploadFile file); Integer IntoUpload(UploadFile file);
List<UploadFile> selectUpload(UploadFile file); List<UploadFile> selectUpload(@Param("fileId") String fileId,@Param("fileName") String fileName);
List<Dictionary> selectDic(Dictionary dic); List<Dictionary> selectDic(@Param("codingType") String codingType,@Param("codingType1") String codingType1,
@Param("codingType2") String codingType2);
} }

View File

@ -18,13 +18,14 @@ public interface IAorestCoverageService {
public List<AorestCoverageVO> selectAorestCoverage(); public List<AorestCoverageVO> selectAorestCoverage();
public Integer DelAorestCoverage(@Param("id") String id); public Integer DelAorestCoverage(String id);
public Integer IntoAorestCoverage(AorestCoverageVO eastVO); public Integer IntoAorestCoverage(AorestCoverageVO eastVO);
public Integer IntoUpload(UploadFile file); public Integer IntoUpload(UploadFile file);
public List<UploadFile> selectUpload(UploadFile file); public List<UploadFile> selectUpload(String fileId,String fileName);
public List<Dictionary> selectDic(Dictionary dic); List<Dictionary> selectDic(String codingType,String codingType1,
String codingType2);
} }

View File

@ -7,6 +7,7 @@ import com.ruoyi.system.domain_yada.UploadFile;
import com.ruoyi.system.mapper_yada.AorestCoverageMapper; import com.ruoyi.system.mapper_yada.AorestCoverageMapper;
import com.ruoyi.system.mapper_yada.AustraliaMiddleEastMapper; import com.ruoyi.system.mapper_yada.AustraliaMiddleEastMapper;
import com.ruoyi.system.service_yada.IAorestCoverageService; import com.ruoyi.system.service_yada.IAorestCoverageService;
import org.apache.ibatis.annotations.Param;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
@ -45,12 +46,13 @@ public class AorestCoverageServiceimpl implements IAorestCoverageService {
} }
@Override @Override
public List<UploadFile> selectUpload(UploadFile file) { public List<UploadFile> selectUpload(String fileId, String fileName) {
return coverageMapper.selectUpload(file); return coverageMapper.selectUpload(fileId,fileName);
} }
@Override @Override
public List<Dictionary> selectDic(Dictionary dic) { public List<Dictionary> selectDic(String codingType,String codingType1,
return coverageMapper.selectDic(dic); String codingType2) {
return coverageMapper.selectDic(codingType,codingType1,codingType2);
} }
} }

View File

@ -96,11 +96,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<select id="selectUpload" resultMap="RM_Upload"> <select id="selectUpload" resultMap="RM_Upload">
SELECT file_id,file_name,file_size,file_path,created_by,created_time FROM sys_file_info SELECT file_id,file_name,file_size,file_path,created_by,created_time FROM sys_file_info
WHERE 1=1 WHERE 1=1
<if test="@Ognl@isNotEmpty(paramBean.fileId)"> <if test="fileId!= null and fileId !=''">
AND fileId = #{paramBean.fileId} AND fileId = #{fileId}
</if> </if>
<if test="@Ognl@isNotEmpty(paramBean.fileName)"> <if test="fileName!= null and fileName !=''">
AND file_name = #{paramBean.fileName} AND file_name = #{fileName}
</if> </if>
</select> </select>
@ -117,26 +117,25 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<sql id="columnsdic"> <sql id="columnsdic">
<![CDATA[ <![CDATA[
coding_type,dictionary,name,nameEn,created_by,created_time coding_type,dictionary,name,name_En,created_by,created_time
]]> ]]>
</sql> </sql>
<select id="selectDic" resultMap="RM_Dictionary"> <select id="selectDic" resultMap="RM_Dictionary">
select <include refid="columns"/> from dictionary select <include refid="columnsdic"/> from dictionary
where coding_type in where dictionary in
(SELECT A.coding_type FROM dictionary a (SELECT A.dictionary FROM dictionary a
join (select dictionary from dictionary join (select dictionary from dictionary
where 1=1 where 1=1
<if test="@Ognl@isNotEmpty(paramBean.codingType)"> <if test="codingType!= null and codingType !=''">
AND coding_type = #{paramBean.codingType} AND coding_type = #{codingType}
</if> </if>
<if test="@Ognl@isNotEmpty(paramBean.codingType1)"> <if test="codingType1!= null and codingType1 !=''">
AND dictionary = #{paramBean.codingType1} AND dictionary = #{codingType1}
</if> </if>
) b on a.coding_type=b.dictionary ) b on a.coding_type=b.dictionary
and <if test="codingType2!= null and codingType2 !=''">
<if test="@Ognl@isNotEmpty(paramBean.codingType2)"> AND a.dictionary = #{codingType2}
AND a.dictionary = #{paramBean.codingType2}
</if> </if>
) )
</select> </select>