Commit 3d03787c authored by zp's avatar zp

统计

parent c7107fb7
...@@ -226,11 +226,11 @@ public class ProductController implements ProductApi { ...@@ -226,11 +226,11 @@ public class ProductController implements ProductApi {
@Override @Override
public CommonResp<Page<FundRankResp>> getFundRankInfo(FundRankReq req) { public CommonResp<Page<FundRankResp>> getFundRankInfo(FundRankReq req) {
return null; return CommonResp.success(this.productService.getFundRank(req));
} }
@Override @Override
public CommonResp<Long> getFundRankCountInfo(FundRankReq req) { public CommonResp<Long> getFundRankCountInfo(FundRankReq req) {
return null; return CommonResp.success(this.productService.getFundRankCountInfo(req));
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment