| | |
| | | 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; |
| | |
| | | */ |
| | | @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); |
| | | } |
| | | |
| | | /** |