|
@@ -83,8 +83,8 @@ public class TVerificationTaskDetail extends BaseEntity
|
|
|
private String calculate5;
|
|
|
|
|
|
private Long calculate5Id;
|
|
|
-
|
|
|
- /** 召回率 */
|
|
|
+ private Long trained;
|
|
|
+ private Long tested;
|
|
|
|
|
|
public Long getId() {
|
|
|
return id;
|
|
@@ -278,6 +278,22 @@ public class TVerificationTaskDetail extends BaseEntity
|
|
|
this.calculate5Id = calculate5Id;
|
|
|
}
|
|
|
|
|
|
+ public Long getTrained() {
|
|
|
+ return trained;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTrained(Long trained) {
|
|
|
+ this.trained = trained;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getTested() {
|
|
|
+ return tested;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTested(Long tested) {
|
|
|
+ this.tested = tested;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "TVerificationTaskDetail{" +
|
|
@@ -305,6 +321,8 @@ public class TVerificationTaskDetail extends BaseEntity
|
|
|
", calculate4Id=" + calculate4Id +
|
|
|
", calculate5='" + calculate5 + '\'' +
|
|
|
", calculate5Id=" + calculate5Id +
|
|
|
+ ", trained=" + trained +
|
|
|
+ ", tested=" + tested +
|
|
|
'}';
|
|
|
}
|
|
|
}
|