@RequestMapping("/queryCustomerTrafficReport") public CustomerTrafficReport getCustomerTrafficReport( @RequestParam(value = "customer") Customer customer) { return revenueService.getCustomerTrafficReport(new Long(customer.getCustomerNo())); }
@RequestMapping(value = "/queryCustomerLoanAndIncome/{customerId}") public CustomerTrafficReport queryCustomerLoanAndIncome( @PathVariable("customerId") String customerId) { return revenueService.getCustomerTrafficReport(new Long(customerId)); }