feiyu02
2024-09-10 6c7f45871b93ef26d353a5a3596701ac2f39ed9c
src/main/kotlin/cn/flightfeather/supervision/lightshare/service/TaskService.kt
@@ -1,10 +1,8 @@
package cn.flightfeather.supervision.lightshare.service
import cn.flightfeather.supervision.domain.ds1.entity.Task
import cn.flightfeather.supervision.lightshare.vo.DayTaskProgressVo
import cn.flightfeather.supervision.lightshare.vo.RankVo
import cn.flightfeather.supervision.lightshare.vo.TaskFrequencyVo
import cn.flightfeather.supervision.lightshare.vo.TaskVo
import cn.flightfeather.supervision.lightshare.vo.*
import org.springframework.web.bind.annotation.RequestBody
import java.util.*
interface TaskService {
@@ -52,4 +50,12 @@
    fun getByDistrictCode(districtCode: String, date: Date):List<TaskVo>
    fun findTask(areaVo: AreaVo):List<Task?>
    /**
     * 查找总任务完成情况
     * @param areaVo 筛选条件
     */
    fun findTaskProgress(areaVo: AreaVo): List<TaskProgressVo?>
}