林火综合应急信息管理系统cloud后端
guoshilong
2023-03-14 2c6c1bef7406c4fac77505c2fcc5ba24443da055
blade-service/blade-dp/src/main/java/org/springblade/modules/dp/controller/MilitaryLocalCoordinationController.java
@@ -8,6 +8,7 @@
import org.springblade.core.tool.api.R;
import org.springblade.fire.entity.FireSupplementEntity;
import org.springblade.fire.feign.IFireClient;
import org.springblade.fire.vo.FireSupplementVO;
import org.springblade.modules.dp.service.IMilitaryLocalCoordinationService;
import org.springblade.fire.vo.FireVO;
import org.springblade.system.feign.ISysClient;
@@ -49,8 +50,9 @@
    */
   @GetMapping("/disasterAssessment")
   @ApiOperation(value = "详情", notes = "传入fireSupplement")
   public R<FireSupplementEntity> detail(FireSupplementEntity fireSupplement) {
      return R.data(fireClient.getSupplementOne(fireSupplement));
   public R<FireSupplementVO> detail(FireSupplementEntity fireSupplement) {
      FireSupplementVO fireAllDetail = militaryLocalCoordinationService.getFireAllDetail(fireSupplement.getFireId());
      return R.data(fireAllDetail);
   }
   /**