用户认证修改

This commit is contained in:
huxin02 2025-04-25 17:53:43 +08:00
parent 2cfb465bcc
commit 042c47b8c8
4 changed files with 4 additions and 1 deletions

View File

@ -1720,6 +1720,7 @@ public class Constants {
* 用户自动锁定锁定分钟数
*/
public static final String USER_AUTO_LOCK_LOCK_MINUTES = "user_auto_lock_lock_minutes";
/**
* 用户认证过期时间天数
*/

View File

@ -34,7 +34,6 @@ public class EnforceCheckController {
this.enforceCheckService = enforceCheckService;
}
/**
* 创建执法检查记录
*

View File

@ -45,6 +45,7 @@ import java.util.Objects;
group by format(a.createTime as 'yyyy')
order by createTime
"""),
})
@SqlResultSetMappings({
@SqlResultSetMapping(

View File

@ -73,6 +73,8 @@ public class AuthService {
ResponseEntity<Map<String, Object>> responseEntity = restTemplate.exchange(requestEntity, new ParameterizedTypeReference<>() {
});
log.debug("sysLogout response:{}", responseEntity.getBody());
return responseEntity.getBody();
}