| | |
| | | @Log(title = "问卷模板", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | public AjaxResult edit(@RequestBody TjSurveyTemplate tjSurveyTemplate) { |
| | | TjSurveyTemplate byId = tjSurveyTemplateService.selectTemplateByTjCategory(tjSurveyTemplate.getTempType()); |
| | | if(null !=byId){ |
| | | return AjaxResult.error("该类型模板已存在 不可重复创建!!!"); |
| | | TjSurveyTemplate byId = tjSurveyTemplateService.selectTemplateByMid1(tjSurveyTemplate.getMid()); |
| | | if(null ==byId){ |
| | | return AjaxResult.error("该模板不存在!!!"); |
| | | } |
| | | return toAjax(tjSurveyTemplateService.updateTjSurveyTemplate(tjSurveyTemplate)); |
| | | } |