feiyu02
2024-01-09 c1becf4cbd2e99601ce011c14b8742427249cfb4
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,6 @@
    fun getByDistrictCode(districtCode: String, date: Date):List<TaskVo>
    fun findTask(areaVo: AreaVo):List<Task?>
}