wangwei 6 rokov pred
rodič
commit
4c787d93d3

+ 1 - 1
examcloud-core-basic-api-client/src/main/java/cn/com/qmth/examcloud/core/basic/api/client/StudentFaceCloudServiceClient.java

@@ -40,7 +40,7 @@ public class StudentFaceCloudServiceClient extends BasicCloudClientSupport
 
 	@Override
 	public SaveStudentFaceResp saveStudentFace(SaveStudentFaceReq req) {
-		return post("studentFace/saveStudentFaceInfo", req, SaveStudentFaceResp.class);
+		return post("studentFace/saveStudentFace", req, SaveStudentFaceResp.class);
 	}
 
 }

+ 5 - 5
examcloud-core-basic-api/src/main/java/cn/com/qmth/examcloud/core/basic/api/request/SaveStudentFaceReq.java

@@ -21,7 +21,7 @@ public class SaveStudentFaceReq extends BaseRequest {
 
 	private String facesetToken;
 
-	private String photoPath;
+	private String photoName;
 
 	private String operator;
 
@@ -57,12 +57,12 @@ public class SaveStudentFaceReq extends BaseRequest {
 		this.facesetToken = facesetToken;
 	}
 
-	public String getPhotoPath() {
-		return photoPath;
+	public String getPhotoName() {
+		return photoName;
 	}
 
-	public void setPhotoPath(String photoPath) {
-		this.photoPath = photoPath;
+	public void setPhotoName(String photoName) {
+		this.photoName = photoName;
 	}
 
 	public String getOperator() {