feiyu02
2025-09-17 8c15c9cc0d6474ed77e313258f9b09f7f2d6366e
src/main/kotlin/cn/flightfeather/supervision/lightshare/vo/TaskProgressVo.kt
@@ -2,22 +2,40 @@
import com.fasterxml.jackson.annotation.JsonInclude
/**
 * 任务完成情况统计
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
class TaskProgressVo{
class TaskProgressVo {
    // 任务id
    var tguid: String? = null
    // 任务名称
    var name: String? = null
    // 任务等级(2:总任务;null:日任务或子任务)
    var levelnum: Int? = null
    var totaltask:Int? = null
    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 completetask:Int? = null
    var totaltask: Int? = null
    var totaltaskByScene: MutableMap<String?, Int>? = null
    var mytotaltask:Int? = null
    var completetask: Int? = null
    var completetaskByScene: MutableMap<String?, Int>? = null
    var mycompletetask:Int? = null
    var mytotaltask: Int? = null
    var subtaskprogressVo = mutableListOf<TaskProgressVo>()
    var mycompletetask: Int? = null
    var subtaskprogressVo: List<TaskProgressVo>? = null
    var subTaskSummary: List<SubTaskSummary>? = null
}