|
@@ -41,9 +41,11 @@ public class OrganizationRatingController {
|
|
|
@RequestParam(value = "pageSize") Integer pageSize,
|
|
|
@RequestParam(value = "id", required = false) String id,
|
|
|
@RequestParam(value = "binSection", required = false) String binSection,
|
|
|
- @RequestParam(value = "year", required = false) String year) {
|
|
|
- IPage<OrganizationRating> list = organizationRatingService.list(pageNum, pageSize, id, binSection, year);
|
|
|
- return R.ok().data(null);
|
|
|
+ @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);
|
|
|
+ return R.ok().data(list);
|
|
|
}
|
|
|
|
|
|
|