| | |
| | | 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 { |
| | |
| | | |
| | | fun getByDistrictCode(districtCode: String, date: Date):List<TaskVo> |
| | | |
| | | fun findTask(areaVo: AreaVo):List<Task?> |
| | | |
| | | } |