| | |
| | | @GetMapping("/detail") |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation(value = "详情", notes = "传入propertyCompanyScore") |
| | | public R<PropertyCompanyScoreVO> detail(PropertyCompanyScoreEntity propertyCompanyScore) { |
| | | public R<PropertyCompanyScoreEntity> detail(PropertyCompanyScoreEntity propertyCompanyScore) { |
| | | PropertyCompanyScoreEntity detail = propertyCompanyScoreService.getOne(Condition.getQueryWrapper(propertyCompanyScore)); |
| | | return R.data(PropertyCompanyScoreWrapper.build().entityVO(detail)); |
| | | return R.data(detail); |
| | | } |
| | | /** |
| | | * 物业公司评分表 分页 |