dev切换到prod,部分功能不上传

This commit is contained in:
2025-09-23 17:34:08 +08:00
parent 1d006342fb
commit 814324430c
3 changed files with 10 additions and 5 deletions

View File

@@ -24,8 +24,8 @@ public class AccountTask {
* 替换为
* 每个月月初只刷新教育子账号的积分
*/
@Scheduled(cron = "0 25 14 * * ?")
// @Scheduled(cron = "0 0 0 1 * ?")
// @Scheduled(cron = "0 25 14 * * ?")
@Scheduled(cron = "0 0 0 1 * ?")
public void refreshCreditsMonthly() {
log.info("每月1号0点 重置教育版子账号为默认积分");
accountService.refreshCreditsMonthly();
@@ -81,7 +81,8 @@ public class AccountTask {
redisUtil.batchDeleteKeysWithSamePrefix(RedisUtil.NICKNAME_MODIFY_TIMES);
}
@Scheduled(cron = "0 35 14 * * ?")
// @Scheduled(cron = "0 35 14 * * ?")
@Scheduled(cron = "0 5 0 * * ?")
public void checkEduAdminExpireStatus() {
accountService.checkEduAdminExpireStatus();
}

View File

@@ -37,7 +37,9 @@ public class ProjectQueryDTO extends PageQueryBaseVo {
@ApiModelProperty("1交集2并集")
private Integer intersection;
private List<String> process;
// todo 获取历史列表,允许传入多个类型
// private List<String> process;
private String process;
private Integer asc;
}

View File

@@ -1727,7 +1727,9 @@ public class UserLikeGroupServiceImpl extends ServiceImpl<UserLikeGroupMapper, U
queryWrapper.le("update_time", new Date(query.getEndDate()));
}
if (!StringUtils.isEmpty(query.getProcess())) {
queryWrapper.in("process", query.getProcess());
// todo 获取历史列表,允许传入多个类型
// queryWrapper.in("process", query.getProcess());
queryWrapper.eq("process", query.getProcess());
}
// 新增分类过滤
if (CollectionUtil.isNotEmpty(query.getClassificationIdList())) {