From c1f18289bb2afb747e4761063d227b3bbdcb6e75 Mon Sep 17 00:00:00 2001
From: wuxw <928255095@qq.com>
Date: 星期三, 09 十一月 2022 14:06:35 +0800
Subject: [PATCH] 保养任务 根据状态查询

---
 java110-bean/src/main/java/com/java110/dto/questionAnswerTitleValue/QuestionAnswerTitleValueDto.java |   30 +++++++++++++++++++++++++++---
 1 files changed, 27 insertions(+), 3 deletions(-)

diff --git a/java110-bean/src/main/java/com/java110/dto/questionAnswerTitleValue/QuestionAnswerTitleValueDto.java b/java110-bean/src/main/java/com/java110/dto/questionAnswerTitleValue/QuestionAnswerTitleValueDto.java
index 7456746..d985d08 100755
--- a/java110-bean/src/main/java/com/java110/dto/questionAnswerTitleValue/QuestionAnswerTitleValueDto.java
+++ b/java110-bean/src/main/java/com/java110/dto/questionAnswerTitleValue/QuestionAnswerTitleValueDto.java
@@ -22,12 +22,13 @@
     private String objType;
     private String qaValue;
     private String seq;
-
+    private long userCount;
+    private String allCount;
+    private String percentage;
 
     private Date createTime;
 
     private String statusCd = "0";
-
 
     public String getValueId() {
         return valueId;
@@ -77,7 +78,6 @@
         this.seq = seq;
     }
 
-
     public Date getCreateTime() {
         return createTime;
     }
@@ -101,4 +101,28 @@
     public void setTitleIds(String[] titleIds) {
         this.titleIds = titleIds;
     }
+
+    public long getUserCount() {
+        return userCount;
+    }
+
+    public void setUserCount(long userCount) {
+        this.userCount = userCount;
+    }
+
+    public String getAllCount() {
+        return allCount;
+    }
+
+    public void setAllCount(String allCount) {
+        this.allCount = allCount;
+    }
+
+    public String getPercentage() {
+        return percentage;
+    }
+
+    public void setPercentage(String percentage) {
+        this.percentage = percentage;
+    }
 }

--
Gitblit v1.8.0