feiyu02
2024-04-25 0392c333ed3d987cb2ab3dac4e1a972cff405f21
src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AreaVo.kt
@@ -1,6 +1,8 @@
package cn.flightfeather.supervision.lightshare.vo
import com.fasterxml.jackson.annotation.JsonFormat
import com.fasterxml.jackson.annotation.JsonInclude
import java.time.LocalDateTime
/**
 * 区域条件
@@ -17,10 +19,14 @@
    var towncode: String? = null
    var townname: String? = null
    // 时间范围
    var starttime: String? = null
    var endtime: String? = null
    // 时间范围,格式yyyy-MM-dd HH:mm:ss
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    var starttime: LocalDateTime? = null
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    var endtime: LocalDateTime? = null
    // 场景id
    var sceneId: String? = null
    // 场景名称
    var sceneName: String? = null
    // 场景类型
@@ -31,4 +37,8 @@
    // 主数据源,1:以飞羽环境系统中的用户为主体;2:以飞羽监管系统中的用户为主体
    var sourceType:Int = 1
    // 查询排序
    var sort:String? = "asc"
    var sortBy: String? = null
}