定时任务更新bug修复

This commit is contained in:
linfeng 2022-05-21 23:17:54 +08:00
parent 778c6fdd8f
commit 28dd5323c9
2 changed files with 10 additions and 6 deletions

View File

@ -1,11 +1,13 @@
# linfeng-community
#### 1.介绍
社交论坛uniapp小程序/H5版本基于SpringBoot2+MybatisPlus+Shiro+jwt+Redis+Vue+Uniapp的前后端分离的社交论坛问答发帖/BBS项目 项目分为Uniapp用户端兼容H5和微信小程序版本和Vue后台管理端包括完整的权限处理 基于以下技术栈开发SpringBoot2、MybatisPlus、Shiro、jwt、Redis、Vue、Uniapp、MySQL5.7。
社交论坛uniapp**小程序/H5版本**基于SpringBoot2+MybatisPlus+Shiro+jwt+Redis+Vue+Uniapp的前后端分离的社交论坛问答发帖/BBS项目 项目分为Uniapp用户端兼容H5和微信小程序版本和Vue后台管理端包括完整的权限处理 基于以下技术栈开发SpringBoot2、MybatisPlus、Shiro、jwt、Redis、Vue、Uniapp、MySQL5.7。
功能:图文帖,短视频,圈子,私聊,微信支付(小程序/H5付费贴积分签到钱包充值积分余额兑换话题标签等完整功能直接看演示更直观↓↓↓↓↓↓
#### 2.软件演示
##### 2.1移动端H5演示版本手机扫码浏览/输入手机号登录)
##### 2.1移动端H5演示版本手机扫码浏览/输入手机号登录)或者 https://www.linfeng.tech 小程序效果演示和h5一致除了登录不一样
![移动端H5二维码](https://gitee.com/virus010101/linfeng-community/raw/master/images/er.png)
@ -57,15 +59,15 @@ https://github.com/virus010101/linfeng-community
#### 4.必看说明
1.**后台前端的代码**在**\src\main\resources\static\linfeng-community-vue**目录下!
1.**后台前端的代码**在 **src\main\resources\static\linfeng-community-vue** 目录下!
2.**后台管理系统和后台管理系统后端API已经全部开源**。
3. SQL文件开源的在QQ群开源不易**请左上角star后备注gitee的用户名加QQ群640700429获取**
3.SQL文件开源的在QQ群开源不易**请左上角star后备注gitee的用户名加QQ群640700429获取**
<img src="https://gitee.com/virus010101/linfeng-community/raw/master/images/qrcode.jpg" style="zoom:25%;" />
其他事项咨询可以如下扫码添加技术客服qq
<img src="https://gitee.com/virus010101/linfeng-community/raw/master/images/mine.jpg" style="zoom: 25%;" />

View File

@ -88,7 +88,9 @@ public class ScheduleJobServiceImpl extends ServiceImpl<ScheduleJobDao, Schedule
@Override
public int updateBatch(Long[] jobIds, int status){
Map<String, Object> map = new HashMap<>(2);
map.put("list", jobIds);
List<Long> list=new ArrayList<>();
Collections.addAll(list, jobIds);
map.put("list", list);
map.put("status", status);
return baseMapper.updateBatch(map);
}