|
|
@@ -14,6 +14,7 @@ import lombok.RequiredArgsConstructor; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.springframework.validation.annotation.Validated; |
|
|
|
import org.springframework.web.bind.annotation.*; |
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
@@ -27,7 +28,7 @@ import java.util.List; |
|
|
|
@Validated |
|
|
|
@RestController |
|
|
|
@RequestMapping("/api/v1/declared/delayed") |
|
|
|
@Api(value = "DelayedProjectController", tags = "申报管理-延期项目") |
|
|
|
@Api(tags = "延期项目", hidden = true) |
|
|
|
@RequiredArgsConstructor |
|
|
|
public class DelayedApplyController { |
|
|
|
|
|
|
@@ -54,8 +55,8 @@ public class DelayedApplyController { |
|
|
|
@GetMapping("/export") |
|
|
|
@ApiOperation("过期的项目列表导出") |
|
|
|
@WebLog("过期的项目列表导出") |
|
|
|
public void exportList(ProjectListReq req, HttpServletResponse response){ |
|
|
|
ExcelDownUtil.downXls(response,req,delayedApplyManage::exportList); |
|
|
|
public void exportList(ProjectListReq req, HttpServletResponse response) { |
|
|
|
ExcelDownUtil.downXls(response, req, delayedApplyManage::exportList); |
|
|
|
} |
|
|
|
|
|
|
|
} |