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/ServiceSubtaskScriptCount.java | 76 ++++++++++++++++++++++++++++++++++++++
1 files changed, 76 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/java/com/smartor/domain/ServiceSubtaskScriptCount.java b/smartor/src/main/java/com/smartor/domain/ServiceSubtaskScriptCount.java
new file mode 100644
index 0000000..0bdd682
--- /dev/null
+++ b/smartor/src/main/java/com/smartor/domain/ServiceSubtaskScriptCount.java
@@ -0,0 +1,76 @@
+package com.smartor.domain;
+
+import io.swagger.annotations.ApiModel;
+import io.swagger.annotations.ApiModelProperty;
+import lombok.Data;
+
+import java.io.Serializable;
+import java.util.List;
+
+/**
+ * 瀛愪换鍔¢棶棰橀�夐」缁熻缁撴灉
+ *
+ * @author 闄堟樁鑱�
+ * @date 2025-12-31
+ */
+@ApiModel(value = "ServiceSubtaskScriptCount", description = "瀛愪换鍔¢棶棰橀�夐」缁熻缁撴灉")
+@Data
+public class ServiceSubtaskScriptCount implements Serializable {
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * 闂ID
+ */
+ @ApiModelProperty(name = "闂ID")
+ private Long scriptid;
+
+ /**
+ * 闂鍐呭
+ */
+ @ApiModelProperty("闂鍐呭")
+ private String scriptContent;
+
+ /**
+ * 宸插~鍐欐暟閲�
+ */
+ @ApiModelProperty(value = "宸插~鍐欐暟閲�")
+ private Integer completedQuantity;
+
+ /**
+ * 鎵�鏈夋暟閲�
+ */
+ @ApiModelProperty(value = "鎵�鏈夋暟閲�")
+ private Integer allQuantity;
+
+ /**
+ * 宸插~鍐欐瘮渚�
+ */
+ @ApiModelProperty(value = "宸插~鍐欐瘮渚�")
+ private String completedPercentage;
+
+ /**
+ * 闂閫夐」
+ */
+ @ApiModelProperty(value = "闂閫夐」")
+ private String optionText;
+
+ /**
+ * 闂閫夋嫨鏁�
+ */
+ @ApiModelProperty(value = "闂閫夋嫨鏁�")
+ private Integer chosenQuantity;
+
+ /**
+ * 閫夋嫨姣斾緥 = (chosenQuantity / completedQuantity)
+ */
+ @ApiModelProperty(value = "閫夋嫨姣斾緥")
+ private String chosenPercentage;
+
+
+ /**
+ * 鏄庣粏
+ */
+ @ApiModelProperty(value = "鏄庣粏")
+ private List<ServiceSubtaskScriptCount> details;
+
+}
\ No newline at end of file
--
Gitblit v1.9.3