feiyu02
2022-07-14 4c7e2d8f8d4a93f318ada0e728dbc370e7504e92
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
)