| | |
| | | |
| | | @Override |
| | | public String getStandTempThingById(Integer templateId) { |
| | | return standardTemplateMapper.selectById(templateId).getThing(); |
| | | StandardTemplate standardTemplate = standardTemplateMapper.selectById(templateId); |
| | | if(standardTemplate==null){ |
| | | return null; |
| | | }else{ |
| | | return standardTemplate.getThing(); |
| | | } |
| | | } |
| | | |
| | | @Override |
| | | public String getStandTempNameById(Integer templateId) { |
| | | return standardTemplateMapper.selectById(templateId).getName(); |
| | | StandardTemplate standardTemplate = standardTemplateMapper.selectById(templateId); |
| | | if(standardTemplate==null){ |
| | | return null; |
| | | }else{ |
| | | return standardTemplate.getName(); |
| | | } |
| | | } |
| | | } |
| | | |