mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-11 03:46:50 +08:00
加日志
This commit is contained in:
@@ -221,7 +221,9 @@ public class CourseFullTextApi extends ApiBaseController{
|
||||
if (StringUtils.isEmpty(token)) {
|
||||
token = request.getHeader("token");
|
||||
}
|
||||
log.info("根据userId查询面授课id dto.getUserId() = " + dto.getUserId() + ",token = " + token);
|
||||
List<String> offCourseId = thirdApi.getOffCourseId(dto.getUserId(),token);
|
||||
log.info("根据userId查询面授课id offCourseId.size() = " + offCourseId );
|
||||
String offCourseIds = "";
|
||||
if (!Objects.isNull(offCourseId) && offCourseId.size() > 0){
|
||||
offCourseIds = String.join(",", offCourseId);
|
||||
|
||||
Reference in New Issue
Block a user