|
@@ -80,7 +80,8 @@ public class ThirdPartyServiceImpl implements ThirdPartyService {
|
|
}
|
|
}
|
|
log.info("getPushMessage param={} secretEnum desc={}", param, secretEnum.desc);
|
|
log.info("getPushMessage param={} secretEnum desc={}", param, secretEnum.desc);
|
|
GhDetailExample example = new GhDetailExample();
|
|
GhDetailExample example = new GhDetailExample();
|
|
- example.createCriteria().andTypeEqualTo(GhTypeEnum.THIRD_PARTY_GH.type).andGhIdEqualTo(param.getGhId());
|
|
|
|
|
|
+ example.createCriteria().andTypeEqualTo(GhTypeEnum.THIRD_PARTY_GH.type).andGhIdEqualTo(param.getGhId())
|
|
|
|
+ .andIsDeleteEqualTo(0);
|
|
List<GhDetail> ghDetails = ghDetailMapper.selectByExample(example);
|
|
List<GhDetail> ghDetails = ghDetailMapper.selectByExample(example);
|
|
if (CollectionUtils.isEmpty(ghDetails)) {
|
|
if (CollectionUtils.isEmpty(ghDetails)) {
|
|
return CommonResponse.create(404, "ghId不存在,请联系管理员配置");
|
|
return CommonResponse.create(404, "ghId不存在,请联系管理员配置");
|