分页查询人员及生物识别特征

This commit is contained in:
sxu 2025-03-03 10:51:36 +08:00
parent 3d57559aff
commit d7fa8764e7
1 changed files with 3 additions and 2 deletions

View File

@ -15,6 +15,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import javax.validation.Valid;
import java.util.List;
import java.util.Map;
import java.util.Objects;
@ -96,8 +97,8 @@ public class CustInfoController extends BaseController {
}
@ApiOperation("分页查询人员及生物识别特征")
@PostMapping({"/pageCustInfoPhoto"})
public TableDataInfo pageCustInfoPhoto(@RequestBody CustInfoParam dto) {
@GetMapping({"/pageCustInfoPhoto"})
public TableDataInfo pageCustInfoPhoto(@Valid CustInfoParam dto) {
try {
startPage();
List<PageCustInfoPhotoVO> list = this.custInfoService.pageCustInfoPhoto(dto);