From 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期五, 31 十月 2025 17:35:09 +0800
Subject: [PATCH] 2025.10.31 1. 新增巡查场景历史详情相关数据逻辑(待完成);

---
 app/src/main/java/cn/flightfeather/thirdappmodule/bean/vo/SceneConstructionSite.kt |   97 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 97 insertions(+), 0 deletions(-)

diff --git a/app/src/main/java/cn/flightfeather/thirdappmodule/bean/vo/SceneConstructionSite.kt b/app/src/main/java/cn/flightfeather/thirdappmodule/bean/vo/SceneConstructionSite.kt
index 2a66932..7040fa7 100644
--- a/app/src/main/java/cn/flightfeather/thirdappmodule/bean/vo/SceneConstructionSite.kt
+++ b/app/src/main/java/cn/flightfeather/thirdappmodule/bean/vo/SceneConstructionSite.kt
@@ -1,10 +1,107 @@
 package cn.flightfeather.thirdappmodule.bean.vo
 
+import org.greenrobot.greendao.annotation.Id
+import java.util.*
+
+
 /**
  * 寤虹瓚宸ュ湴淇℃伅
  * @author riku
  * Date: 2025/10/17
  */
 class SceneConstructionSite : BaseSubScene {
+    /**
+     * 鍦烘櫙id锛屼富閿�
+     */
+    var sGuid: String? = null
 
+    /**
+     * 宸ョ▼绫诲瀷
+     */
+    var csProjectType: String? = null
+
+    /**
+     * 鏂藉伐闃舵
+     */
+    var csStatus: String? = null
+
+    /**
+     * 鏂藉伐寮�濮嬫椂闂�
+     */
+    var csStartTime: String? = null
+
+    /**
+     * 鏂藉伐缁撴潫鏃堕棿
+     */
+    var csEndTime: String? = null
+
+    /**
+     * 鍓╀綑宸ユ湡
+     */
+    var csLeftTime: String? = null
+
+    /**
+     * 鍗犲湴闈㈢Н
+     */
+    var csFloorSpace: String? = null
+
+    /**
+     * 鏂藉伐闈㈢Н
+     */
+    var csConstructionArea: String? = null
+
+    /**
+     * 姣忔湀鏂藉伐闈㈢Н
+     */
+    var csConstructionAreaPerMonth: String? = null
+
+    /**
+     * 涓氫富鍗曚綅
+     */
+    var csEmployerUnit: String? = null
+
+    /**
+     * 涓氫富鍗曚綅鑱旂郴浜�
+     */
+    var csEmployerContacts: String? = null
+
+    /**
+     * 涓氫富鍗曚綅鑱旂郴浜虹數璇�
+     */
+    var csEmployerContactsTel: String? = null
+
+    /**
+     * 鏂藉伐鍗曚綅
+     */
+    var csConstructionUnit: String? = null
+
+    /**
+     * 鏂藉伐鍗曚綅鑱旂郴浜�
+     */
+    var csConstructionContacts: String? = null
+
+    /**
+     * 鏂藉伐鍗曚綅鑱旂郴浜虹數璇�
+     */
+    var csConstructionContactsTel: String? = null
+
+    /**
+     * 瀹夊叏鍛�
+     */
+    var csSecurityOfficer: String? = null
+
+    /**
+     * 瀹夊叏鍛樼數璇�
+     */
+    var csSecurityOfficerTel: String? = null
+
+    var csUpdateTime: Date? = null
+
+    var siExtension1: String? = null
+
+    var siExtension2: String? = null
+
+    var siExtension3: String? = null
+
+    var siRemark: String? = null
 }
\ No newline at end of file

--
Gitblit v1.9.3