mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e2f640b68 | |||
| bf6c5f4623 | |||
| df259385ec | |||
| c5f51a17da | |||
| ccf4946b70 | |||
| 3b4a65ba04 | |||
| 3a8ae4c089 | |||
| 63048d8c64 | |||
| 8775472470 |
@ -233,7 +233,7 @@ export const JeecgListMixin = {
|
|||||||
if(!fileName || typeof fileName != "string"){
|
if(!fileName || typeof fileName != "string"){
|
||||||
fileName = "导出文件"
|
fileName = "导出文件"
|
||||||
}
|
}
|
||||||
let param = {...this.queryParam};
|
let param = {...this.getQueryParams()};
|
||||||
if(this.selectedRowKeys && this.selectedRowKeys.length>0){
|
if(this.selectedRowKeys && this.selectedRowKeys.length>0){
|
||||||
param['selections'] = this.selectedRowKeys.join(",")
|
param['selections'] = this.selectedRowKeys.join(",")
|
||||||
}
|
}
|
||||||
|
|||||||
@ -243,7 +243,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jeecgframework</groupId>
|
<groupId>org.jeecgframework</groupId>
|
||||||
<artifactId>autopoi-web</artifactId>
|
<artifactId>autopoi-web</artifactId>
|
||||||
<version>1.2.1</version>
|
<version>1.2.2</version>
|
||||||
<exclusions>
|
<exclusions>
|
||||||
<exclusion>
|
<exclusion>
|
||||||
<groupId>commons-codec</groupId>
|
<groupId>commons-codec</groupId>
|
||||||
|
|||||||
@ -2,11 +2,11 @@ package org.jeecg.modules.system.mapper;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
import org.jeecg.modules.system.entity.SysUserDepart;
|
import org.jeecg.modules.system.entity.SysUserDepart;
|
||||||
|
|
||||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
|
||||||
import io.lettuce.core.dynamic.annotation.Param;
|
|
||||||
|
|
||||||
public interface SysUserDepartMapper extends BaseMapper<SysUserDepart>{
|
public interface SysUserDepartMapper extends BaseMapper<SysUserDepart>{
|
||||||
|
|
||||||
|
|||||||
@ -363,7 +363,7 @@ public class SysUserServiceImpl extends ServiceImpl<SysUserMapper, SysUser> impl
|
|||||||
}
|
}
|
||||||
//情况2:根据用户信息查询,该用户已注销
|
//情况2:根据用户信息查询,该用户已注销
|
||||||
//update-begin---author:王帅 Date:20200601 for:if条件永远为falsebug------------
|
//update-begin---author:王帅 Date:20200601 for:if条件永远为falsebug------------
|
||||||
if (CommonConstant.DEL_FLAG_1==sysUser.getDelFlag()) {
|
if (CommonConstant.DEL_FLAG_1.equals(sysUser.getDelFlag())) {
|
||||||
//update-end---author:王帅 Date:20200601 for:if条件永远为falsebug------------
|
//update-end---author:王帅 Date:20200601 for:if条件永远为falsebug------------
|
||||||
baseCommonService.addLog("用户登录失败,用户名:" + sysUser.getUsername() + "已注销!", CommonConstant.LOG_TYPE_1, null);
|
baseCommonService.addLog("用户登录失败,用户名:" + sysUser.getUsername() + "已注销!", CommonConstant.LOG_TYPE_1, null);
|
||||||
result.error500("该用户已注销");
|
result.error500("该用户已注销");
|
||||||
|
|||||||
Reference in New Issue
Block a user