From 4c7e2d8f8d4a93f318ada0e728dbc370e7504e92 Mon Sep 17 00:00:00 2001 From: feiyu02 <risaku@163.com> Date: 星期四, 14 七月 2022 17:49:40 +0800 Subject: [PATCH] 1. 自动评分优化; 2. 巡查汇总报告功能编写中 --- 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