update 平台测试员状态

This commit is contained in:
2023-07-04 14:05:25 +08:00
parent 5a12f9b8c6
commit 841682dbbc
3 changed files with 12 additions and 5 deletions

View File

@@ -9,6 +9,7 @@ import com.jsowell.common.core.domain.AjaxResult;
import com.jsowell.common.core.page.TableDataInfo; import com.jsowell.common.core.page.TableDataInfo;
import com.jsowell.common.enums.BusinessType; import com.jsowell.common.enums.BusinessType;
import com.jsowell.common.enums.uniapp.BalanceChangesEnum; import com.jsowell.common.enums.uniapp.BalanceChangesEnum;
import com.jsowell.common.enums.ykc.ReturnCodeEnum;
import com.jsowell.common.exception.BusinessException; import com.jsowell.common.exception.BusinessException;
import com.jsowell.common.util.StringUtils; import com.jsowell.common.util.StringUtils;
import com.jsowell.pile.domain.MemberBasicInfo; import com.jsowell.pile.domain.MemberBasicInfo;
@@ -193,6 +194,9 @@ public class MemberBasicInfoController extends BaseController {
public AjaxResult updatePlatformTester(@RequestBody PlatformTesterDTO dto) { public AjaxResult updatePlatformTester(@RequestBody PlatformTesterDTO dto) {
AjaxResult result; AjaxResult result;
try { try {
if (StringUtils.isBlank(dto.getMemberId()) || StringUtils.isBlank(dto.getStatus())) {
throw new BusinessException(ReturnCodeEnum.CODE_PARAM_NOT_NULL_ERROR);
}
memberBasicInfoService.updatePlatformTester(dto); memberBasicInfoService.updatePlatformTester(dto);
result = AjaxResult.success(); result = AjaxResult.success();
} catch (BusinessException e) { } catch (BusinessException e) {
@@ -210,7 +214,10 @@ public class MemberBasicInfoController extends BaseController {
public AjaxResult selectPlatformTesterStatus(@RequestBody PlatformTesterDTO dto) { public AjaxResult selectPlatformTesterStatus(@RequestBody PlatformTesterDTO dto) {
AjaxResult result; AjaxResult result;
try { try {
PlatformTesterVO platformTesterVO = memberBasicInfoService.selectPlatformTesterStatus(dto); if (StringUtils.isBlank(dto.getMemberId())) {
throw new BusinessException(ReturnCodeEnum.CODE_PARAM_NOT_NULL_ERROR);
}
PlatformTesterVO platformTesterVO = memberBasicInfoService.selectPlatformTesterStatus(dto.getMemberId());
result = AjaxResult.success(platformTesterVO); result = AjaxResult.success(platformTesterVO);
} catch (BusinessException e) { } catch (BusinessException e) {
logger.error("查询平台测试员状态error param:{}", JSON.toJSONString(dto), e); logger.error("查询平台测试员状态error param:{}", JSON.toJSONString(dto), e);

View File

@@ -120,5 +120,5 @@ public interface IMemberBasicInfoService {
void updatePlatformTester(PlatformTesterDTO dto); void updatePlatformTester(PlatformTesterDTO dto);
PlatformTesterVO selectPlatformTesterStatus(PlatformTesterDTO dto); PlatformTesterVO selectPlatformTesterStatus(String memberId);
} }

View File

@@ -307,16 +307,16 @@ public class MemberBasicInfoServiceImpl implements IMemberBasicInfoService {
} }
@Override @Override
public PlatformTesterVO selectPlatformTesterStatus(PlatformTesterDTO dto) { public PlatformTesterVO selectPlatformTesterStatus(String memberId) {
PlatformTesterVO vo = new PlatformTesterVO(); PlatformTesterVO vo = new PlatformTesterVO();
String redisKey = CacheConstants.PLATFORM_TESTER + dto.getMemberId(); String redisKey = CacheConstants.PLATFORM_TESTER + memberId;
String status = redisCache.getCacheObject(redisKey); String status = redisCache.getCacheObject(redisKey);
if (StringUtils.isNotBlank(status)) { if (StringUtils.isNotBlank(status)) {
vo.setStatus(status); vo.setStatus(status);
} else { } else {
vo.setStatus(Constants.ZERO); vo.setStatus(Constants.ZERO);
} }
vo.setMemberId(dto.getMemberId()); vo.setMemberId(memberId);
return vo; return vo;
} }