|
@ -20,7 +20,6 @@ package com.elink.esua.epdc.service.impl; |
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
import com.baomidou.mybatisplus.core.metadata.IPage; |
|
|
import com.elink.esua.epdc.commons.dynamic.datasource.annotation.DataSource; |
|
|
import com.elink.esua.epdc.commons.dynamic.datasource.annotation.DataSource; |
|
|
import com.elink.esua.epdc.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
import com.elink.esua.epdc.commons.mybatis.service.impl.BaseServiceImpl; |
|
|
import com.elink.esua.epdc.commons.tools.constant.NumConstant; |
|
|
|
|
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
|
|
import com.elink.esua.epdc.commons.tools.page.PageData; |
|
|
import com.elink.esua.epdc.commons.tools.security.user.SecurityUser; |
|
|
import com.elink.esua.epdc.commons.tools.security.user.SecurityUser; |
|
|
import com.elink.esua.epdc.commons.tools.utils.ConvertUtils; |
|
|
import com.elink.esua.epdc.commons.tools.utils.ConvertUtils; |
|
@ -31,7 +30,6 @@ import com.elink.esua.epdc.entity.PartyAuthenticationFailedEntity; |
|
|
import com.elink.esua.epdc.rocketmq.dto.OrganizationModifyDTO; |
|
|
import com.elink.esua.epdc.rocketmq.dto.OrganizationModifyDTO; |
|
|
import com.elink.esua.epdc.service.PartyAuthenticationFailedService; |
|
|
import com.elink.esua.epdc.service.PartyAuthenticationFailedService; |
|
|
import com.elink.esua.epdc.util.AppUserUtils; |
|
|
import com.elink.esua.epdc.util.AppUserUtils; |
|
|
import com.google.common.collect.Lists; |
|
|
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.stereotype.Service; |
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
import org.springframework.transaction.annotation.Transactional; |
|
@ -55,10 +53,10 @@ public class PartyAuthenticationFailedServiceImpl extends BaseServiceImpl<PartyA |
|
|
public PageData<PartyAuthenticationFailedDTO> page(Map<String, Object> params) { |
|
|
public PageData<PartyAuthenticationFailedDTO> page(Map<String, Object> params) { |
|
|
|
|
|
|
|
|
String[] paramKeys = new String[]{"realName", "identityNo", "startTime", "endTime", "mobile"}; |
|
|
String[] paramKeys = new String[]{"realName", "identityNo", "startTime", "endTime", "mobile"}; |
|
|
if (AppUserUtils.isDefaultQuery(params, paramKeys)) { |
|
|
// if (AppUserUtils.isDefaultQuery(params, paramKeys)) {
|
|
|
List<PartyAuthenticationFailedDTO> userDtoList = Lists.newArrayList(); |
|
|
// List<PartyAuthenticationFailedDTO> userDtoList = Lists.newArrayList();
|
|
|
return new PageData<>(userDtoList, NumConstant.ZERO); |
|
|
// return new PageData<>(userDtoList, NumConstant.ZERO);
|
|
|
} |
|
|
// }
|
|
|
|
|
|
|
|
|
// 党员认证失败页面 查询条件:姓名, 手机号, 身份证号, 后端处理前后空格
|
|
|
// 党员认证失败页面 查询条件:姓名, 手机号, 身份证号, 后端处理前后空格
|
|
|
paramKeys = new String[]{"realName", "identityNo", "mobile"}; |
|
|
paramKeys = new String[]{"realName", "identityNo", "mobile"}; |
|
|