|
@@ -0,0 +1,29 @@
|
|
|
+package cn.com.qmth.examcloud.core.basic.api.request;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.api.commons.exchange.BaseRequest;
|
|
|
+
|
|
|
+public class UpdatePhotoPathReq extends BaseRequest {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1003594551453376759L;
|
|
|
+
|
|
|
+ private Long studentId;
|
|
|
+
|
|
|
+ private String photoPath;
|
|
|
+
|
|
|
+ public Long getStudentId() {
|
|
|
+ return studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStudentId(Long studentId) {
|
|
|
+ this.studentId = studentId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPhotoPath() {
|
|
|
+ return photoPath;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhotoPath(String photoPath) {
|
|
|
+ this.photoPath = photoPath;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|