src/main/java/org/springblade/modules/yw/service/impl/FirmInfoServiceImpl.java
@@ -121,4 +121,22 @@ // 返回 return getOne(wrapper); } /** * 自定义详情查询 * @param firmInfo * @return */ @Override public FirmInfoVO getDetail(FirmInfoVO firmInfo) { FirmInfoVO detail = baseMapper.getDetail(firmInfo); // 设置类型解析 if (!Strings.isBlank(detail.getCategory())){ detail.setCategoryName( DictBizCache.getValues("industry_category",detail.getCategory()) ); } // 返回 return detail; } }