Commit 7e775f46 by 墨竹

Merge branch 'developer' into feature-02-22

parents 95e7423d 1573997a
......@@ -147,6 +147,7 @@ public class PendingTaskApiServiceImpl implements PendingTaskApiService {
pendingTaskBO.setRelationId(relationId);
pendingTaskBO.setClerkId(newExeutiveClerkId);
pendingTaskBO.setFinishFlag(1);
pendingTaskBO.setFinishTime(new Date());
boolean b = pendingTaskService.changeByRelationId(pendingTaskBO);
return ServiceResponse.success(b);
}
......
......@@ -108,7 +108,7 @@ public class CheckQywxSettingApiServiceImpl implements CheckQywxSettingApiServic
titleSub = StringUtils.isBlank(titleSub) ? "加好友异常" : titleSub;
String key = ALERT_KEY + wxEnterpriseId;
RBucket<Object> bucket = RedisUtil.getRedisClient().getBucket(key);
boolean b = bucket.trySet(1, 60L, TimeUnit.SECONDS);
boolean b = bucket.trySet(1, 2L, TimeUnit.HOURS);
if (!b) {
return;
}
......
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