wms租赁定时任务推送到bms(把获取当前登录人的一级id改为参数传入)
This commit is contained in:
@@ -294,6 +294,12 @@ public interface SystemServiceFeign {
|
||||
@GetMapping("/expenseAccountApi/getInfoByCode")
|
||||
public AjaxResult getSubInfoByCode(@RequestParam("subjectCode") String subjectCode);
|
||||
|
||||
/**
|
||||
* 根据code编码查询费用科目
|
||||
*/
|
||||
@GetMapping("/expenseAccountApi/getInfoByCode2")
|
||||
public AjaxResult getSubInfoByCode2(@RequestParam("subjectCode") String subjectCode,@RequestParam("topOrganizationId") Long topOrganizationId);
|
||||
|
||||
|
||||
/**
|
||||
* 根据code编码查询项目信息
|
||||
|
||||
+5
@@ -234,6 +234,11 @@ public class RemoteSystemFeignFallbackFactory implements FallbackFactory<SystemS
|
||||
return AjaxResult.error("获取科目信息失败" + throwable.getMessage());
|
||||
}
|
||||
|
||||
@Override
|
||||
public AjaxResult getSubInfoByCode2(String subjectCode, Long topOrganizationId) {
|
||||
return AjaxResult.error("获取科目信息失败" + throwable.getMessage());
|
||||
}
|
||||
|
||||
@Override
|
||||
public AjaxResult getProjectByCode(String projectCode) {
|
||||
return AjaxResult.error("获取项目信息失败" + throwable.getMessage());
|
||||
|
||||
Reference in New Issue
Block a user