|
@@ -48,7 +48,7 @@ public class ProjectCostBudgetController {
|
|
* 获取项目计划
|
|
* 获取项目计划
|
|
*/
|
|
*/
|
|
@GetMapping("/getPlanByProjectId")
|
|
@GetMapping("/getPlanByProjectId")
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 2)
|
|
@ApiOperation(value = "获取项目计划")
|
|
@ApiOperation(value = "获取项目计划")
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParam(name = "id", value = "项目id", required = true),
|
|
@ApiImplicitParam(name = "id", value = "项目id", required = true),
|
|
@@ -61,7 +61,7 @@ public class ProjectCostBudgetController {
|
|
* 编辑项目计划
|
|
* 编辑项目计划
|
|
*/
|
|
*/
|
|
@PostMapping("/updatePlan")
|
|
@PostMapping("/updatePlan")
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 5)
|
|
@ApiOperation(value = "获取项目计划")
|
|
@ApiOperation(value = "获取项目计划")
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParam(name = "id", value = "项目id", required = true),
|
|
@ApiImplicitParam(name = "id", value = "项目id", required = true),
|
|
@@ -75,7 +75,7 @@ public class ProjectCostBudgetController {
|
|
* 根据起止日期获取工作日
|
|
* 根据起止日期获取工作日
|
|
*/
|
|
*/
|
|
@GetMapping("/getWorkDays")
|
|
@GetMapping("/getWorkDays")
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 6)
|
|
@ApiOperation(value = "根据起止日期获取工作日")
|
|
@ApiOperation(value = "根据起止日期获取工作日")
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParams({
|
|
@ApiImplicitParam(name = "startDate", value = "开始日期", required = true),
|
|
@ApiImplicitParam(name = "startDate", value = "开始日期", required = true),
|
|
@@ -104,7 +104,7 @@ public class ProjectCostBudgetController {
|
|
* 门户普通权限总计划统计
|
|
* 门户普通权限总计划统计
|
|
*/
|
|
*/
|
|
@GetMapping("/planOverview")
|
|
@GetMapping("/planOverview")
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 7)
|
|
@ApiOperation(value = "门户普通权限总计划统计")
|
|
@ApiOperation(value = "门户普通权限总计划统计")
|
|
public R planOverview(){
|
|
public R planOverview(){
|
|
return R.data(budgetService.planOverview());
|
|
return R.data(budgetService.planOverview());
|
|
@@ -114,7 +114,7 @@ public class ProjectCostBudgetController {
|
|
* 门户普通权限预警
|
|
* 门户普通权限预警
|
|
*/
|
|
*/
|
|
@GetMapping("/postponePlan")
|
|
@GetMapping("/postponePlan")
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 8)
|
|
@ApiOperation(value = "门户普通权限预警")
|
|
@ApiOperation(value = "门户普通权限预警")
|
|
public R postponePlan(){
|
|
public R postponePlan(){
|
|
return R.data(budgetService.postponePlan());
|
|
return R.data(budgetService.postponePlan());
|
|
@@ -124,9 +124,21 @@ public class ProjectCostBudgetController {
|
|
* 门户普通权限单月计划统计
|
|
* 门户普通权限单月计划统计
|
|
*/
|
|
*/
|
|
@GetMapping("/MonthPlanOverview")
|
|
@GetMapping("/MonthPlanOverview")
|
|
- @ApiOperationSupport(order = 1)
|
|
|
|
|
|
+ @ApiOperationSupport(order = 9)
|
|
@ApiOperation(value = "门户普通权限单月计划统计")
|
|
@ApiOperation(value = "门户普通权限单月计划统计")
|
|
public R MonthPlanOverview(String planDate){
|
|
public R MonthPlanOverview(String planDate){
|
|
return R.data(budgetService.MonthPlanOverview(planDate));
|
|
return R.data(budgetService.MonthPlanOverview(planDate));
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 门户普通权限计划统计图
|
|
|
|
+ */
|
|
|
|
+ @GetMapping("/MonthOfYearPlanOverview")
|
|
|
|
+ @ApiOperationSupport(order = 10)
|
|
|
|
+ @ApiOperation(value = "门户普通权限计划统计图")
|
|
|
|
+ public R MonthOfYearPlanOverview(){
|
|
|
|
+ return R.data(budgetService.MonthOfYearPlanOverview());
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
}
|
|
}
|