feat: 智聪记账管理,期货同步功能修改。

This commit is contained in:
tianyongbao
2025-04-03 14:42:53 +08:00
parent fc55bbefbe
commit 6cb4672a39
13 changed files with 377 additions and 46 deletions

View File

@@ -77,7 +77,7 @@ public interface RemoteInvestService
public R appointmentResults();
/**
* 更新未出信用卡分期账单入账数据
* 同步当日股票日行情
*
* @return 结果
*/
@@ -85,4 +85,13 @@ public interface RemoteInvestService
public R synStocksDailyHistory();
/**
* 同步当日期货日行情
*
* @return 结果
*/
@RequestMapping(value = "/job/synFuturesDailyHistory",method = RequestMethod.POST)
public R synFuturesDailyHistory();
}

View File

@@ -69,6 +69,11 @@ public class RemoteInvestFallbackFactory implements FallbackFactory<RemoteInvest
return R.fail("投资服务调用同步股票日行情数据失败");
}
@Override
public R synFuturesDailyHistory() {
return R.fail("投资服务调用同步期货日行情数据失败");
}
};
}