feat: 智聪记账管理,期货同步功能修改。
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -69,6 +69,11 @@ public class RemoteInvestFallbackFactory implements FallbackFactory<RemoteInvest
|
||||
return R.fail("投资服务调用同步股票日行情数据失败");
|
||||
}
|
||||
|
||||
@Override
|
||||
public R synFuturesDailyHistory() {
|
||||
return R.fail("投资服务调用同步期货日行情数据失败");
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user