|
@ -51,7 +51,7 @@ public class ResiGroupController { |
|
|
* @return Result<List < GroupAuditedResultDTO>> |
|
|
* @return Result<List < GroupAuditedResultDTO>> |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("groupsingrid") |
|
|
@PostMapping("groupsingrid") |
|
|
public Result<List<GroupsInGridResultDTO>> getGroupsInGrid(GroupAuditedFromDTO formDTO) { |
|
|
public Result<List<GroupsInGridResultDTO>> getGroupsInGrid(@RequestBody GroupAuditedFromDTO formDTO) { |
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
return resiGroupService.getGroupsInGrid(formDTO); |
|
|
return resiGroupService.getGroupsInGrid(formDTO); |
|
|
} |
|
|
} |
|
@ -63,7 +63,7 @@ public class ResiGroupController { |
|
|
* @return Result<GovGroupSummarizeResultDTO> |
|
|
* @return Result<GovGroupSummarizeResultDTO> |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("getgroupsummarize") |
|
|
@PostMapping("getgroupsummarize") |
|
|
public Result<GovGroupSummarizeResultDTO> getGroupSummarize(GovGroupSummarizeFromDTO formDTO) { |
|
|
public Result<GovGroupSummarizeResultDTO> getGroupSummarize(@RequestBody GovGroupSummarizeFromDTO formDTO) { |
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
ValidatorUtils.validateEntity(formDTO); |
|
|
return resiGroupService.getGroupSummarize(formDTO); |
|
|
return resiGroupService.getGroupSummarize(formDTO); |
|
|
} |
|
|
} |
|
|