Commit a39c24bf authored by chenyuxi's avatar chenyuxi

feat: 瓜子交互任务

parent fde1f719
......@@ -273,7 +273,7 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService {
if(CommonConstants.GZ_SUCCESS_CODE.equals(returnMap.get("responseCode"))){
LambdaUpdateWrapper<TGzEmpInfo> updateEmpWrapper = new LambdaUpdateWrapper<>();
updateEmpWrapper.eq(TGzEmpInfo::getBizId, pushInfo.getBizId())
.set(TGzEmpInfo::getEmpPushStatus, CommonConstants.ZERO_STRING);
.set(TGzEmpInfo::getEmpPushStatus, CommonConstants.ONE_STRING);
tGzEmpInfoService.update(null, updateEmpWrapper);
}
}
......@@ -299,7 +299,7 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService {
if(CommonConstants.GZ_SUCCESS_CODE.equals(returnMap.get("responseCode"))){
LambdaUpdateWrapper<TGzEmpInfo> updateEmpWrapper = new LambdaUpdateWrapper<>();
updateEmpWrapper.eq(TGzEmpInfo::getBizId, pushInfo.getBizId())
.set(TGzEmpInfo::getContractPushStatus, CommonConstants.ZERO_STRING);
.set(TGzEmpInfo::getContractPushStatus, CommonConstants.ONE_STRING);
tGzEmpInfoService.update(null, updateEmpWrapper);
}
}
......@@ -380,7 +380,7 @@ public class TGzPushHandleServiceImpl implements TGzPushHandleService {
if(CommonConstants.GZ_SUCCESS_CODE.equals(returnMap.get("responseCode"))){
LambdaUpdateWrapper<TGzEmpInfo> updateEmpWrapper = new LambdaUpdateWrapper<>();
updateEmpWrapper.eq(TGzEmpInfo::getBizId, pushInfo.getBizId())
.set(TGzEmpInfo::getContractAttaPushStatus, CommonConstants.ZERO_STRING);
.set(TGzEmpInfo::getContractAttaPushStatus, CommonConstants.ONE_STRING);
tGzEmpInfoService.update(null, updateEmpWrapper);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment