use of com.tony.billing.response.fund.FundsExistenceCheckResponse in project BillingDubbo by TonyJiangWJ.
the class FundInfoController method checkAllFundsStatus.
@RequestMapping(value = "/fund/check/all/status", method = RequestMethod.POST)
public FundsExistenceCheckResponse checkAllFundsStatus(@ModelAttribute("request") @Validated FundsExistenceCheckRequest request) {
List<FundExistenceCheck> existsList = fundInfoService.checkFundsExistence(request.getFundCheckList());
FundsExistenceCheckResponse response = ResponseUtil.success(new FundsExistenceCheckResponse());
response.setExistsList(existsList);
return response;
}
Aggregations