YuanPan 8 yıl önce
ebeveyn
işleme
1686e41e3c

+ 1 - 1
core-api/src/main/java/cn/com/qmth/examcloud/service/core/api/StudentFaceInfoApi.java

@@ -36,7 +36,7 @@ public class StudentFaceInfoApi {
 
     @ApiOperation(value="按身份证查询",notes="查询")
     @GetMapping("/identityNumber")
-    public ResponseEntity findByIdentityNumber(@RequestParam Long orgId,@RequestParam String identityNumber){
+    public ResponseEntity findByIdentityNumber(@RequestParam String identityNumber){
     	Student student  = studentRepo.findByIdentityNumber(identityNumber);
     	if(student == null){
     		return new ResponseEntity(new ErrorMsg("该学生不存在"),HttpStatus.OK);