package cn.flightfeather.supervision.lightshare.vo
|
|
import com.fasterxml.jackson.annotation.JsonIgnore
|
import com.fasterxml.jackson.annotation.JsonInclude
|
import java.util.*
|
|
/**
|
* @author riku
|
* Date: 2020/6/12
|
*/
|
@JsonInclude(JsonInclude.Include.NON_NULL)
|
class SubtaskSearchResultVo : DataContent() {
|
|
var subTaskId: String? = null
|
|
var districtName: String? = null
|
var townName: String? = null
|
var sceneId: String? = null
|
var sceneName: String? = null
|
var sceneTypeId: Byte? = null
|
var sceneType: String? = null
|
var sceneAddress: String? = null
|
var planStartTime: Date? = null
|
var planEndTime: Date? = null
|
var status: String? = null
|
var path: String? = null
|
var score: Int? = null
|
var level: String? = null
|
var problemList: MutableList<ProblemDetail> = mutableListOf()
|
|
}
|
|
class ProblemDetail {
|
var problemId: String? = null
|
var problemName: String? = null
|
var problemCode: String? = null
|
var longitude: Double? = null
|
var latitude: Double? = null
|
var location: String? = null
|
var rectification: Boolean? = null
|
var rectificationTime: Date? = null
|
var problemPics: MutableList<String> = mutableListOf()
|
var rectificationPics: MutableList<String> = mutableListOf()
|
var updateTime: Date? = null
|
}
|