From ff291e9a3983e47ab75b3bbde94e4605e50e9003 Mon Sep 17 00:00:00 2001
From: 陈昶聿 <chychen@nbjetron.com>
Date: 星期一, 05 一月 2026 14:43:41 +0800
Subject: [PATCH] 【市一】随访满意度明细调整
---
smartor/src/main/java/com/smartor/domain/ServiceSubtaskCategoryCount.java | 47 +++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 47 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/ServiceSubtaskCategoryCount.java b/smartor/src/main/java/com/smartor/domain/ServiceSubtaskCategoryCount.java
new file mode 100644
index 0000000..1f35604
--- /dev/null
+++ b/smartor/src/main/java/com/smartor/domain/ServiceSubtaskCategoryCount.java
@@ -0,0 +1,47 @@
+package com.smartor.domain;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+/**
+ * 鍚勭瀹ゅ畬鎴愰噺缁熻缁撴灉
+ *
+ * @author ruoyi
+ * @date 2024-02-02
+ */
+@ApiModel(value = "ServiceSubtaskCount", description = "鍚勭瀹ゅ畬鎴愰噺缁熻缁撴灉")
+@Data
+public class ServiceSubtaskCategoryCount {
+ private static final long serialVersionUID = 1L;
+
+ @ApiModelProperty(value = "瀛愪换鍔D")
+ private Long subTaskId;
+
+ @ApiModelProperty(value = "鏈嶅姟绫诲瀷")
+ private Long serviceType;
+
+ @ApiModelProperty(value = "骞存湀")
+ private String month;
+
+ @ApiModelProperty(value = "鏁伴噺")
+ private Long count;
+
+ @ApiModelProperty(value = "濉啓鏁伴噺")
+ private Integer completedCount;
+
+ @ApiModelProperty(value = "鎵�鏈夋暟閲�")
+ private Integer allCount;
+
+ @ApiModelProperty(value = "濉啓姣斾緥")
+ private String completedPercent;
+
+ @ApiModelProperty(value = "鍚嶇О")
+ private String name;
+
+ public ServiceSubtaskCategoryCount(String month, Long serviceType, Long count) {
+ this.serviceType = serviceType;
+ this.month = month;
+ this.count = count;
+ }
+}
--
Gitblit v1.9.3