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/lightshare/vo/ExcelConfigVo.kt | 25 +++++++++++++++---------- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/ExcelConfigVo.kt b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/ExcelConfigVo.kt index e54fb76..d12e8be 100644 --- a/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/ExcelConfigVo.kt +++ b/src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/ExcelConfigVo.kt @@ -9,14 +9,19 @@ */ data class ExcelConfigVo( val topTaskGuid: String, - val startTime: Date, - val endTime: Date, - val provinceCode: String?, - val cityCode: String?, - val districtCode: String?, - val townCode: String?, - val sceneType: Int?, - val subTaskIdList: List<String>?, - val problemTypeName: String?, - val problemName: String? + + val startTime: Date? = null, + val endTime: Date? = null, + + val provinceCode: String? = null, + val cityCode: String? = null, + val districtCode: String? = null, + val townCode: String? = null, + + val sceneType: Int? = null, + + val subTaskIdList: List<String>? = null, + + val problemTypeName: String? = null, + val problemName: String? = null ) \ No newline at end of file -- Gitblit v1.9.3