fix: 每日负债统计功能自测问题修复。

This commit is contained in:
2025-09-01 06:58:23 +08:00
parent 794afeb9a8
commit f8fb4b0645
8 changed files with 30 additions and 30 deletions

View File

@@ -94,7 +94,7 @@ public interface RemoteInvestService
public R synFuturesDailyHistory();
/**
* 生成每日负债统计数据
* 生成每日净资产统计数据
*
* @return 结果
*/

View File

@@ -76,7 +76,7 @@ public class RemoteInvestFallbackFactory implements FallbackFactory<RemoteInvest
@Override
public R generateDailyLiabilities() {
return R.fail("投资服务调用生成每日负债统计失败");
return R.fail("投资服务调用生成每日净资产统计失败");
}
};