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