|
@@ -9,6 +9,7 @@ import com.diagbot.dto.ModuleInfoListDTO;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
import com.diagbot.facade.ModuleInfoFacade;
|
|
|
import com.diagbot.vo.AddModuleInfoVO;
|
|
|
+import com.diagbot.vo.GetModuleDetailInfoVO;
|
|
|
import com.diagbot.vo.GetModuleInfoVO;
|
|
|
import com.diagbot.vo.ModuleGetQuestionInfoVO;
|
|
|
import com.diagbot.vo.UpdateModuleInfoVO;
|
|
@@ -108,4 +109,14 @@ public class ModuleInfoController {
|
|
|
IPage<ModuleInfoListDTO> date = moduleInfoFacade.getModuleInfoList(getModuleInfoVO);
|
|
|
return RespDTO.onSuc(date);
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value = "获取模板明细信息——修改获取已添加过的标签[by:wangyu]",
|
|
|
+ notes = "moduleId: 模板id<br>" +
|
|
|
+ "<br>")
|
|
|
+ @PostMapping("/getModuleInfoList")
|
|
|
+ @SysLogger("getModuleInfoList")
|
|
|
+ public RespDTO<List<GetQuestionInfoDTO>> getModuleDetailInfo(@Valid @RequestBody GetModuleDetailInfoVO getModuleDetailInfoVO) {
|
|
|
+ List<GetQuestionInfoDTO> date= moduleInfoFacade.getModuleDetailInfo(getModuleDetailInfoVO);
|
|
|
+ return RespDTO.onSuc(date);
|
|
|
+ }
|
|
|
}
|