|
@ -13,6 +13,8 @@ import org.springframework.web.bind.annotation.RequestBody; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.Map; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @author feikefei |
|
|
* @author feikefei |
|
|
* @create 2023-06-06-15:44 |
|
|
* @create 2023-06-06-15:44 |
|
@ -32,4 +34,10 @@ public class BusinessRiskDataRest { |
|
|
PagerVo<BusinessRiskDataVo> vo = businessRiskDataService.listPage(pq); |
|
|
PagerVo<BusinessRiskDataVo> vo = businessRiskDataService.listPage(pq); |
|
|
return rb.success().setData(vo); |
|
|
return rb.success().setData(vo); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ApiOperation("查询该企业风险信息") |
|
|
|
|
|
@PostMapping("/selectBusinessRiskInfo") |
|
|
|
|
|
public ResultBean selectBusinessRiskInfo(@RequestBody Map<String, Object> map){ |
|
|
|
|
|
return businessRiskDataService.selectBusinessRiskInfo(map); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|