From 6688232eaa889eeb6c58d0d804b587699db55ec2 Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期四, 31 七月 2025 17:32:22 +0800
Subject: [PATCH] 2025.7.31 1. 新增基础数据产品相关接口

---
 src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt |   49 ++++++++++++++++++++++++++-----------------------
 1 files changed, 26 insertions(+), 23 deletions(-)

diff --git a/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt b/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt
index d587397..a560fcb 100644
--- a/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt
+++ b/src/main/kotlin/cn/flightfeather/supervision/model/dataproduct/PPListProblemChange.kt
@@ -1,9 +1,7 @@
 package cn.flightfeather.supervision.model.dataproduct
 
-import cn.flightfeather.supervision.domain.ds1.entity.Problemlist
-import cn.flightfeather.supervision.domain.ds1.entity.Problemtype
-import cn.flightfeather.supervision.domain.ds1.entity.Scense
-import cn.flightfeather.supervision.domain.ds1.entity.Subtask
+import java.util.*
+
 
 /**
  * 鍒濈骇鏁版嵁浜у搧
@@ -13,23 +11,28 @@
  */
 class PPListProblemChange {
 
-    /**
-     * 闂淇℃伅
-     */
-    var problem: Problemlist? = null
-
-    /**
-     * 鍦烘櫙淇℃伅
-     */
-    var scene: Scense? = null
-
-    /**
-     * 宸℃煡淇℃伅
-     */
-    var subTask: Subtask? = null
-
-    /**
-     * 闂绫诲瀷
-     */
-    var problemType: Problemtype? = null
+    // 鍦烘櫙鍞竴缂栧彿
+    var index: Int? = null
+    // 鍦烘櫙鍚嶇О
+    var sceneName: String? = null
+    // 鍦烘櫙绫诲瀷
+    var sceneType: String? = null
+    var provinceName: String? = null
+    var cityName: String? = null
+    var districtName: String? = null
+    var townName: String? = null
+    // 宸℃煡鏃堕棿
+    var inspectionTime: Date? = null
+    // 闂绫诲瀷
+    var problemType: String? = null
+    // 闂鍚嶇О
+    var problemName: String? = null
+    // 闂鍖哄煙
+    var location: String? = null
+    var problemTime: Date? = null
+    // 闂鏄惁鏁存敼
+    var hasChanged: Boolean = false
+    // 鏁存敼鏁�
+    var changeSum: Int = 0
+    var changedTime: Date? = null
 }
\ No newline at end of file

--
Gitblit v1.9.3