瀏覽代碼

update domain

allen 1 年之前
父節點
當前提交
694b04f4af
共有 1 個文件被更改,包括 20 次插入2 次删除
  1. 20 2
      cirs-biz/src/main/java/com/cirs/biz/domain/TVerificationTaskDetail.java

+ 20 - 2
cirs-biz/src/main/java/com/cirs/biz/domain/TVerificationTaskDetail.java

@@ -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 +
                 '}';
     }
 }