|
@@ -9,6 +9,7 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
+import cn.com.qmth.examcloud.api.commons.enums.ExamType;
|
|
import cn.com.qmth.examcloud.commons.exception.StatusException;
|
|
import cn.com.qmth.examcloud.commons.exception.StatusException;
|
|
import cn.com.qmth.examcloud.examwork.api.ExamCloudService;
|
|
import cn.com.qmth.examcloud.examwork.api.ExamCloudService;
|
|
import cn.com.qmth.examcloud.examwork.api.bean.ExamBean;
|
|
import cn.com.qmth.examcloud.examwork.api.bean.ExamBean;
|
|
@@ -61,7 +62,7 @@ public class ExamOuterServiceProvider extends ControllerSupport implements ExamO
|
|
Date beginTime = req.getBeginTime();
|
|
Date beginTime = req.getBeginTime();
|
|
Integer duration = req.getDuration();
|
|
Integer duration = req.getDuration();
|
|
Date endTime = req.getEndTime();
|
|
Date endTime = req.getEndTime();
|
|
- String examType = req.getExamType();
|
|
|
|
|
|
+ ExamType examType = req.getExamType();
|
|
String name = req.getName();
|
|
String name = req.getName();
|
|
String remark = req.getRemark();
|
|
String remark = req.getRemark();
|
|
Long rootOrgId = req.getRootOrgId();
|
|
Long rootOrgId = req.getRootOrgId();
|