From 30d46d06fb4153e48df281d3008ed90935b3c06d Mon Sep 17 00:00:00 2001 From: riku <risaku@163.com> Date: 星期二, 19 七月 2022 16:45:08 +0800 Subject: [PATCH] 1. 新增扬尘监测数据超标情况表 --- src/main/kotlin/cn/flightfeather/supervision/business/Info.kt | 15 +++++++++------ 1 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/business/Info.kt b/src/main/kotlin/cn/flightfeather/supervision/business/Info.kt index e94f8bc..325392b 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/business/Info.kt +++ b/src/main/kotlin/cn/flightfeather/supervision/business/Info.kt @@ -1,10 +1,11 @@ package cn.flightfeather.supervision.business import cn.flightfeather.supervision.common.utils.Constant +import cn.flightfeather.supervision.domain.ds1.entity.Subtask import java.time.LocalDateTime -class Info( +data class Info( //鍦烘櫙鐢ㄦ埛id val userId: String?, //椋炵窘鐜涓満鏅搴旂殑鐢ㄦ埛id @@ -14,9 +15,11 @@ //鍦烘櫙鍚嶇О val sceneName: String?, var sceneType: Constant.ScenseType, - var year: Int, - val month: Int, - val period: Int, - val sTime: LocalDateTime, - val eTime: LocalDateTime + var year: Int? = null, + val month: Int? = null, + val period: Int? = null, + val sTime: LocalDateTime? = null, + val eTime: LocalDateTime? = null, + val subTask: Subtask? = null, + val sceneIndex: Int? = null ) \ No newline at end of file -- Gitblit v1.9.3