feiyu02
2024-04-25 0392c333ed3d987cb2ab3dac4e1a972cff405f21
src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/AreaVo.kt
@@ -1,38 +1,44 @@
package cn.flightfeather.supervision.lightshare.vo
import com.fasterxml.jackson.annotation.JsonFormat
import com.fasterxml.jackson.annotation.JsonInclude
import java.time.LocalDateTime
/**
 * 区域条件
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
open class AreaVo{
    // 行政区划
    var provincecode: String? = null
    var provincename: String? = null
    var citycode: String? = null
    var cityname: String? = null
    var districtcode: String? = null
    var districtname: String? = null
    var towncode: String? = null
    var townname: String? = null
    var starttime: 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
    var endtime: String? = null
    // 场景id
    var sceneId: String? = null
    // 场景名称
    var sceneName: String? = null
    // 场景类型
    var scensetypeid: String? = null
    var notstandardnum: Int = 0
    var allsensenum: Int = 0
    //是否上线
    // 是否上线
    var online: Boolean? = null
    // 主数据源,1:以飞羽环境系统中的用户为主体;2:以飞羽监管系统中的用户为主体
    var sourceType:Int = 1
    // 查询排序
    var sort:String? = "asc"
    var sortBy: String? = null
}