|
|
@@ -128,4 +128,20 @@ public class AmbInvestApiController extends CertifyApiController {
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 投资明细列表
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @RequestMapping(value="/AmbInvestDtailsList",method = RequestMethod.GET)
|
|
|
+ public Result AmbInvestDtailsList(Long id){
|
|
|
+ Result res =new Result();
|
|
|
+ if (id==null){
|
|
|
+ res.getError().add(buildError(ErrorConstants.PARAM_EMPTY_ERROR,"当前阿米巴","当前阿米巴"));
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+ res.data(ambInvestService.AmbInvestDtailsList(id));
|
|
|
+ return res;
|
|
|
+ }
|
|
|
+
|
|
|
}
|