| | |
| | | |
| | | import org.apache.commons.lang3.StringUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import com.qxueyou.scc.admin.classes.model.ClsSubjectChapter; |
| | | import com.qxueyou.scc.admin.classes.model.ClsSubjectLecture; |
| | |
| | | |
| | | @Api(tags = "课件管理-教师端") |
| | | @RestController |
| | | @CrossOrigin(origins="*",maxAge=3600) |
| | | @RequestMapping(value = "teach/clsLecture") |
| | | public class ClsLectureController { |
| | | @Autowired |