feiyu02
2024-09-25 0516cba27e632f20efac2752787f38f0c87baafa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
 
    // 时间范围,格式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
    // 场景类型
    var scensetypeid: String? = null
 
    // 是否上线
    var online: Boolean? = null
 
    // 主数据源,1:以飞羽环境系统中的用户为主体;2:以飞羽监管系统中的用户为主体
    var sourceType:Int = 1
 
    // 查询排序
    var sort:String? = "asc"
    var sortBy: String? = null
}