修改远程接口地址

This commit is contained in:
huangrun
2025-11-19 11:38:35 +08:00
parent 3379acdd1e
commit 8d9b360654

View File

@@ -499,7 +499,7 @@ public class CourseAuditApi extends ApiBaseController{
boeaiCourseDto.setVideoCount(videoList.size()); boeaiCourseDto.setVideoCount(videoList.size());
ObjectMapper objectMapper = new ObjectMapper(); ObjectMapper objectMapper = new ObjectMapper();
String message = objectMapper.writeValueAsString(boeaiCourseDto); String message = objectMapper.writeValueAsString(boeaiCourseDto);
String url = "http://10.251.160.38:8088/aiVideo/saveCourse"; String url = "http://10.251.186.27:8088/aiVideo/saveCourse";
HttpUtils.sendMessage(message,url); HttpUtils.sendMessage(message,url);
} }