Commit e20f4ccd authored by 张亚辉's avatar 张亚辉

model

parent 9aa05b03
...@@ -99,7 +99,7 @@ public interface ProductApi { ...@@ -99,7 +99,7 @@ public interface ProductApi {
@ApiOperation("私有基金详情") @ApiOperation("私有基金详情")
@GetMapping("/privatefund/detail") @GetMapping("/privatefund/detail")
CommonResp<com.tanpu.fund.api.model.resp.PrivateFundDetailResp> getPrivateDetail(@RequestParam("id") String id); CommonResp<PrivateFundDetailResp> getPrivateDetail(@RequestParam("id") String id);
@ApiOperation("私有基金历史业绩") @ApiOperation("私有基金历史业绩")
@GetMapping("/privatefund/historyprofit") @GetMapping("/privatefund/historyprofit")
......
...@@ -111,7 +111,7 @@ public class ProductController implements ProductApi { ...@@ -111,7 +111,7 @@ public class ProductController implements ProductApi {
} }
@Override @Override
public CommonResp<com.tanpu.fund.api.model.resp.PrivateFundDetailResp> getPrivateDetail(String id) { public CommonResp<PrivateFundDetailResp> getPrivateDetail(String id) {
if (StringUtils.isEmpty(id)) { if (StringUtils.isEmpty(id)) {
return CommonResp.error(CommonResp.PARAMETER_INVALID_STATUS_CODE, CommonResp.PARAMETER_INVALID_MESSAGE); return CommonResp.error(CommonResp.PARAMETER_INVALID_STATUS_CODE, CommonResp.PARAMETER_INVALID_MESSAGE);
} }
......
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