|
|
@@ -4,7 +4,6 @@ import com.ningdatech.basic.model.PageVo; |
|
|
|
import com.ningdatech.log.annotation.WebLog; |
|
|
|
import com.ningdatech.pmapi.common.util.ExcelDownUtil; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.manage.DelayedApplyManage; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.model.dto.DefaultDeclaredDTO; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.model.dto.DelayedApplyDTO; |
|
|
|
import com.ningdatech.pmapi.projectdeclared.model.vo.DelayedApplyVO; |
|
|
|
import com.ningdatech.pmapi.projectlib.model.req.ProjectListReq; |
|
|
@@ -16,6 +15,7 @@ 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; |
|
|
|
|
|
|
|
/** |
|
|
|
* @Classname DelayedProjectController |
|
|
@@ -39,6 +39,12 @@ public class DelayedApplyController { |
|
|
|
return delayedApplyManage.projectLibList(req); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation(value = "查看某个项目的延期列表", notes = "查看某个项目的延期列表") |
|
|
|
@GetMapping("/delay-list/{projectId}") |
|
|
|
public List<DelayedApplyVO> delayList(@PathVariable Long projectId) { |
|
|
|
return delayedApplyManage.delayList(projectId); |
|
|
|
} |
|
|
|
|
|
|
|
@ApiOperation(value = "延期的内容详情", notes = "延期的内容详情") |
|
|
|
@GetMapping("/detail/{projectId}") |
|
|
|
public DelayedApplyVO detailByProjectId(@PathVariable Long projectId) { |
|
|
|