parent
1dcbffefec
commit
e5c79d8c90
3 changed files with 54 additions and 10 deletions
@ -0,0 +1,24 @@ |
||||
package com.teaching.backend.controller.Know; |
||||
|
||||
import lombok.AllArgsConstructor; |
||||
import lombok.Data; |
||||
import lombok.NoArgsConstructor; |
||||
import lombok.NonNull; |
||||
import org.springframework.web.bind.annotation.RequestParam; |
||||
|
||||
import java.util.List; |
||||
|
||||
/** |
||||
* @Author:youhang |
||||
* @Date:2024-09-02-9:47 |
||||
* @Description: |
||||
*/ |
||||
@Data |
||||
@AllArgsConstructor |
||||
@NoArgsConstructor |
||||
public class RelsNodesVO { |
||||
@NonNull |
||||
private String courseId; |
||||
private Integer level; |
||||
private List<String> types; |
||||
} |
Loading…
Reference in new issue