| | |
| | | @Autowired |
| | | private SvyLibTemplateTagMapper svyLibTemplateTagMapper; |
| | | @Autowired |
| | | private SvyLibScriptCategoryMapper svyLibScriptCategoryMapper; |
| | | @Autowired |
| | | private Icd10AssociationMapper icd10AssociationMapper; |
| | | |
| | | /** |
| | |
| | | for (SvyLibTemplateScript svyLibScript : svyLibTemplate.getSvyTemplateLibScripts()) { |
| | | svyLibScript.setGuid(svyLibTemplateVO.getGuid()); |
| | | svyLibScript.setOrgid(svyLibTemplateVO.getOrgid()); |
| | | //获取一下分类名称 |
| | | if(StringUtils.isEmpty(svyLibScript.getCategoryName())){ |
| | | SvyLibScriptCategory svyLibScriptCategory = svyLibScriptCategoryMapper.selectSvyLibScriptCategoryById(svyLibScript.getCategoryid()); |
| | | if(svyLibScriptCategory != null) svyLibScript.setCategoryName(svyLibScriptCategory.getName()); |
| | | } |
| | | |
| | | |
| | | //对题目进行处理 |
| | | if (svyLibScript.getIsoperation() != null) { |
| | | //问题的操作不为空 |