Skip to content
Snippets Groups Projects

预算本部门项目库及校内项目库项目展示、拆分

Merged 王星君 requested to merge feature/wxj/develop into develop
Compare and
10 files
+ 29
26
Compare changes
  • Side-by-side
  • Inline
Files
10
package com.seasky.projectplan.api;
import com.seasky.core.common.Result;
import com.seasky.projectplan.dto.budgetinfo.BudgetInfoOut;
import io.swagger.annotations.ApiOperation;
import org.springframework.cloud.openfeign.FeignClient;
@@ -16,5 +17,5 @@ public interface IBudgetInfo {
@ApiOperation("根据BudgetInfoId查询具体信息")
@PostMapping("selectBudgetInfoById")
BudgetInfoOut selectBudgetInfoById(@RequestParam(value = "id") Long id);
Result<BudgetInfoOut> selectBudgetInfoById(@RequestParam(value = "id") Long id);
}