增加客观题需求

master
yz
parent 627e5cc537
commit 6ec08da734

@ -0,0 +1,52 @@
package com.sztzjy.resource_center.controller.api;
import io.swagger.annotations.Api;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@Api(tags = "课程方面API")
@RequestMapping("api/sys/ObjectiveApi")
public class ObjectiveApi {
/**
*
* insertObjective
* SysObjectiveQuestions systemOwner schoolId
* return: boolean
*/
/**
*
* batchDeleteObjective
* List<String> objIdList schoolId
* return: boolean
*/
/**
*
* selectObjectiveList
* schoolId courseId type content index size
* return:PageInfo<SysObjectiveQuestions>
*/
/**
*
* selectObjectiveDetails
* objectiveId
* return:SysObjectiveQuestions
*/
/**
*
* downloadResource
* response
* return:void
*/
/**
*
* insertObjectiveByExcel
* MultipartFile schoolId
* return:void
*/
}
Loading…
Cancel
Save