|
@@ -46,11 +46,12 @@ public class OrganizationRatingController {
|
|
|
public R list(@RequestParam(value = "pageNum") Integer pageNum,
|
|
|
@RequestParam(value = "pageSize") Integer pageSize,
|
|
|
@RequestParam(value = "id", required = false) String id,
|
|
|
+ @RequestParam(value = "organizationYearRatingId", required = false) String organizationYearRatingId,
|
|
|
@RequestParam(value = "binSection", required = false) String binSection,
|
|
|
@RequestParam(value = "year", required = false) String year,
|
|
|
@RequestParam(value = "organizationShortName", required = false) String organizationShortName,
|
|
|
@RequestParam(value = "organizationId", required = false) String organizationId) {
|
|
|
- IPage<OrganizationRating> list = organizationRatingService.list(pageNum, pageSize, id, binSection, year,organizationShortName,organizationId);
|
|
|
+ IPage<OrganizationRating> list = organizationRatingService.list(pageNum, pageSize, id,organizationYearRatingId, binSection, year,organizationShortName,organizationId);
|
|
|
return R.ok().data(list);
|
|
|
}
|
|
|
|