src/main/java/cc/mrbird/febs/ai/service/impl/AiProductQuestionServiceImpl.java
@@ -640,4 +640,18 @@ } @Override public FebsResponse updateLabel(String ids, String label) { if (StrUtil.isEmpty(ids)) { throw new FebsException("参数错误"); } List<String> idList = StrUtil.split(ids, ','); this.update(null, Wrappers.lambdaUpdate(AiProductQuestion.class) .set(AiProductQuestion::getLabel, label) .set(AiProductQuestion::getUpdatedTime, new Date()) .in(AiProductQuestion::getId, idList)); return new FebsResponse().success().message("操作成功"); } }