From 5bff489eb92a807c25d3746d8088518bd259a50b Mon Sep 17 00:00:00 2001
From: feiyu02 <risaku@163.com>
Date: 星期一, 13 十月 2025 16:15:10 +0800
Subject: [PATCH] Rename .java to .kt
---
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