BUGFIX: 1、llm使用sketch查询工具数据没有保存到历史记录中

2、flux运行失败状态下,获取结果报错
3、618福利邮件通知
This commit is contained in:
2025-06-19 17:16:48 +08:00
parent 13759d806b
commit 18be52e806
6 changed files with 54 additions and 6 deletions

View File

@@ -371,4 +371,13 @@ public class AccountController {
public Response<Boolean> subAccountImport(@RequestParam("file") MultipartFile file) {
return Response.success(accountService.subAccountImport(file));
}
@GetMapping("/send618Email")
@ApiOperation(value = "618邮件发送")
public Response<String> send618PromotionEmailTemp() {
accountService.send618PromotionEmailTemp();
return Response.success("success");
}
}