|
|
@@ -0,0 +1,20 @@ |
|
|
|
package com.ningdatech.pmapi.workbench.controller; |
|
|
|
|
|
|
|
import io.swagger.annotations.Api; |
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
import org.springframework.web.bind.annotation.RequestMapping; |
|
|
|
import org.springframework.web.bind.annotation.RestController; |
|
|
|
|
|
|
|
/** |
|
|
|
* 工作台前端控制器 |
|
|
|
* |
|
|
|
* @author CMM |
|
|
|
* @since 2023/03/17 15:35 |
|
|
|
*/ |
|
|
|
@RestController |
|
|
|
@AllArgsConstructor |
|
|
|
@Api(tags = "工作台控制器") |
|
|
|
@RequestMapping("/api/v1/todo-center") |
|
|
|
public class WorkbenchController { |
|
|
|
|
|
|
|
} |