From df3af70b33eb6372b56075bc9e45c23ccf3f82c6 Mon Sep 17 00:00:00 2001
From: riku <risaku@163.com>
Date: 星期二, 28 十月 2025 17:40:38 +0800
Subject: [PATCH] 2025.10.28 1. 新增巡查场景历史详情界面出版(完成); 2. 巡查任务日历界面,任务条目中新增风险提示、巡查要点、应急巡查3种提示信息的提示图标逻辑(待完成);

---
 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