| | |
| | | package cn.flightfeather.supervision.lightshare.vo |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat |
| | | import com.fasterxml.jackson.annotation.JsonInclude |
| | | import java.time.LocalDateTime |
| | | |
| | | /** |
| | | * 区域条件 |
| | |
| | | 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 |
| | | |
| | | // 场景名称 |
| | | var sceneName: String? = null |