mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/per-boe/java-servers.git
synced 2025-12-09 02:46:50 +08:00
@@ -226,7 +226,12 @@ public class CourseFullTextApi extends ApiBaseController{
|
|||||||
@PostMapping("/search")
|
@PostMapping("/search")
|
||||||
public JsonResponse<PageList<CourseFullText>> search(Pagination pager, CourseQueryDto dto, Integer minDuration, Integer maxDuration, HttpServletRequest request) throws JsonProcessingException {
|
public JsonResponse<PageList<CourseFullText>> search(Pagination pager, CourseQueryDto dto, Integer minDuration, Integer maxDuration, HttpServletRequest request) throws JsonProcessingException {
|
||||||
//获取例外人员id
|
//获取例外人员id
|
||||||
List<String> userId = thirdApi.getUserId();
|
// List<String> userId = thirdApi.getUserId();
|
||||||
|
List<String> userId = new ArrayList<>();
|
||||||
|
userId.add("965342027497607168");
|
||||||
|
userId.add("981537203807064064");
|
||||||
|
userId.add("965628977500655616");
|
||||||
|
|
||||||
log.info("获取例外人员id userId = " + userId );
|
log.info("获取例外人员id userId = " + userId );
|
||||||
String userIds = String.join(",", userId);
|
String userIds = String.join(",", userId);
|
||||||
// String userIds="132,123";
|
// String userIds="132,123";
|
||||||
|
|||||||
Reference in New Issue
Block a user