|
|
@ -1,5 +1,6 @@
|
|
|
|
package com.ruoyi.web.controller.system.exam;
|
|
|
|
package com.ruoyi.web.controller.system.exam;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
@ -87,6 +88,8 @@ public class TdQuestionController extends BaseController
|
|
|
|
@ResponseBody
|
|
|
|
@ResponseBody
|
|
|
|
public AjaxResult addSave(TdQuestion tdQuestion)
|
|
|
|
public AjaxResult addSave(TdQuestion tdQuestion)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
tdQuestion.setCREATEPERSON(getLoginName());
|
|
|
|
|
|
|
|
tdQuestion.setCREATEDATE(new Date());
|
|
|
|
return toAjax(tdQuestionService.insertTdQuestion(tdQuestion));
|
|
|
|
return toAjax(tdQuestionService.insertTdQuestion(tdQuestion));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|