|
@@ -0,0 +1,60 @@
|
|
|
+package cn.com.qmth.examcloud.core.oe.admin.api.response;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+import cn.com.qmth.examcloud.commons.web.cloud.api.BaseResponse;
|
|
|
+
|
|
|
+public class GetExamPhotoVerifyDataResp extends BaseResponse{
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private static final long serialVersionUID = -2735205397742150106L;
|
|
|
+ /**
|
|
|
+ * 分数ID
|
|
|
+ */
|
|
|
+ private Long scoreId;
|
|
|
+ /**
|
|
|
+ * 总的人脸检测成功率(%)
|
|
|
+ */
|
|
|
+ private double successRate;
|
|
|
+ /**
|
|
|
+ * 陌生人脸出现总次数
|
|
|
+ */
|
|
|
+ private int strangerCount;
|
|
|
+ /**
|
|
|
+ * 照片URL集合
|
|
|
+ */
|
|
|
+ private List<String> photoUrls;
|
|
|
+
|
|
|
+ public Long getScoreId() {
|
|
|
+ return scoreId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScoreId(Long scoreId) {
|
|
|
+ this.scoreId = scoreId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public double getSuccessRate() {
|
|
|
+ return successRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSuccessRate(double successRate) {
|
|
|
+ this.successRate = successRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public int getStrangerCount() {
|
|
|
+ return strangerCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setStrangerCount(int strangerCount) {
|
|
|
+ this.strangerCount = strangerCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public List<String> getPhotoUrls() {
|
|
|
+ return photoUrls;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPhotoUrls(List<String> photoUrls) {
|
|
|
+ this.photoUrls = photoUrls;
|
|
|
+ }
|
|
|
+}
|