From 0d102610127e786ac8900b2a46ee8dfd8f1c3eae Mon Sep 17 00:00:00 2001
From: java110 <928255095@qq.com>
Date: 星期二, 13 十二月 2022 14:39:11 +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
old mode 100644
new mode 100755
index 7456746..d985d08
--- 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