package com.ydtech.modules.task.controller; import io.swagger.annotations.Api; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; @Api(tags = "任务controller") @RestController @RequestMapping("/task/task") public class TaskController { }