TaskController.java 399 B

12345678910111213
  1. import com.ruoyi.common.core.controller.BaseController;
  2. import io.swagger.annotations.Api;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. @Api("任务Controller")
  6. @RestController
  7. @RequestMapping("/sim/task")
  8. public class TaskController extends BaseController {
  9. // @PreAuthorize("@ss.hasPermi('sim:task:list')")
  10. }