Skip to content
Snippets Groups Projects

fix:调 rpc

Merged 班迪 requested to merge feature/chenqi into develop
Compare and
26 files
+ 339
117
Compare changes
  • Side-by-side
  • Inline
Files
26
@@ -2,6 +2,7 @@ package com.seasky.projectplan.api;
import com.seasky.core.common.Result;
import com.seasky.projectplan.dto.baseconfig.BaseConfigCmd;
import com.seasky.projectplan.dto.baseconfig.budgetswitch.BudgetSwitchOut;
import com.seasky.projectplan.dto.baseconfig.budgetswitch.BudgetSwitchQry;
import com.seasky.projectplan.dto.baseconfig.devicetype.DeviceTypeOut;
import com.seasky.projectplan.dto.baseconfig.devicetype.DeviceTypeQry;
@@ -12,7 +13,6 @@ import com.seasky.projectplan.dto.baseconfig.informationtype.InformationTypeQry;
import com.seasky.projectplan.dto.baseconfig.informationtype.InformationTypeTree1;
import com.seasky.projectplan.dto.baseconfig.personfund.PersonFundOut;
import com.seasky.projectplan.dto.baseconfig.personfund.PersonFundQry;
import io.swagger.annotations.Api;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@@ -31,9 +31,13 @@ import java.util.List;
@RequestMapping("baseConfig")
public interface IBaseConfigController {
@PostMapping("/loginUserInfo")
Result<Object> loginUserInfo();
@PostMapping("/initBudgetDeptSwitch")
Result<Object> initBudgetDeptSwitch(@RequestParam("type") String type);
@PostMapping("/openDeptSwitch")
Result<Object> openDeptSwitch(@RequestBody List<Long> ids);
@@ -41,7 +45,7 @@ public interface IBaseConfigController {
Result<Object> closeDeptSwitch(@RequestBody List<Long> ids);
@PostMapping("/queryBudgetDeptSwitchDetail")
Result<Object> queryBudgetDeptSwitchDetail(@RequestBody BudgetSwitchQry qry );
Result<BudgetSwitchOut> queryBudgetDeptSwitchDetail(@RequestBody BudgetSwitchQry qry );
@PostMapping("/saveExtendFormManage")
Result<Object> saveExtendFormManage(@RequestBody BaseConfigCmd cmd);