| | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import lombok.AllArgsConstructor; |
| | | import org.apache.commons.collections4.CollectionUtils; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | import java.util.HashMap; |
| | |
| | | |
| | | @Api(tags = "oA项目管理") |
| | | @RestController |
| | | @AllArgsConstructor |
| | | @RequestMapping("/oA/project") |
| | | public class OaProjectController { |
| | | @Autowired |
| | | private OaProjectService oaProjectService; |
| | | private final OaProjectService oaProjectService; |
| | | |
| | | @ApiOperation("获取项目列表") |
| | | @GetMapping("/listPage") |