Commit 1f382932040d96cd7053a9075e14e82301df8711

Authored by zhangdaiscott
1 parent 148e44f9

合并其他人修改提交

ant-design-vue-jeecg/src/mixins/JeecgListMixin.js
... ... @@ -233,7 +233,7 @@ export const JeecgListMixin = {
233 233 if(!fileName || typeof fileName != "string"){
234 234 fileName = "导出文件"
235 235 }
236   - let param = {...this.queryParam};
  236 + let param = {...this.getQueryParams()};
237 237 if(this.selectedRowKeys && this.selectedRowKeys.length>0){
238 238 param['selections'] = this.selectedRowKeys.join(",")
239 239 }
... ...
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/mapper/SysUserDepartMapper.java
... ... @@ -2,11 +2,11 @@ package org.jeecg.modules.system.mapper;
2 2  
3 3 import java.util.List;
4 4  
  5 +import org.apache.ibatis.annotations.Param;
5 6 import org.jeecg.modules.system.entity.SysUserDepart;
6 7  
7 8 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
8 9  
9   -import io.lettuce.core.dynamic.annotation.Param;
10 10  
11 11 public interface SysUserDepartMapper extends BaseMapper<SysUserDepart>{
12 12  
... ...
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/service/impl/SysUserServiceImpl.java
... ... @@ -363,7 +363,7 @@ public class SysUserServiceImpl extends ServiceImpl&lt;SysUserMapper, SysUser&gt; impl
363 363 }
364 364 //情况2:根据用户信息查询,该用户已注销
365 365 //update-begin---author:王帅 Date:20200601 for:if条件永远为falsebug------------
366   - if (CommonConstant.DEL_FLAG_1==sysUser.getDelFlag()) {
  366 + if (CommonConstant.DEL_FLAG_1.equals(sysUser.getDelFlag())) {
367 367 //update-end---author:王帅 Date:20200601 for:if条件永远为falsebug------------
368 368 baseCommonService.addLog("用户登录失败,用户名:" + sysUser.getUsername() + "已注销!", CommonConstant.LOG_TYPE_1, null);
369 369 result.error500("该用户已注销");
... ...