|
|
|
@ -2,6 +2,8 @@ package com.daqing.financial.crms.controller; |
|
|
|
|
|
|
|
|
|
import com.daqing.financial.crms.CustomerControllerApi; |
|
|
|
|
import com.daqing.financial.crms.service.CustomerService; |
|
|
|
|
import com.daqing.framework.domain.crms.CompanyCustomerEntity; |
|
|
|
|
import com.daqing.framework.domain.crms.CustomerEntity; |
|
|
|
|
import com.daqing.framework.domain.crms.ext.CustomerCompanyTOI; |
|
|
|
|
import com.daqing.framework.domain.crms.ext.CustomerCompanyTOU; |
|
|
|
|
import com.daqing.framework.domain.crms.ext.CustomerPersonalTOI; |
|
|
|
@ -153,4 +155,14 @@ public class CustomerController implements CustomerControllerApi { |
|
|
|
|
|
|
|
|
|
return customerService.queryCustomerInfoById(applyAmountInfo); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 查询所有客户编号/客户名称 |
|
|
|
|
*/ |
|
|
|
|
@GetMapping("/queryCompanyCodeAndName") |
|
|
|
|
public ResponseResult queryCompanyCodeAndName(){ |
|
|
|
|
|
|
|
|
|
List<CustomerEntity>list = customerService.queryCompanyCodeAndName(); |
|
|
|
|
return ResponseResult.SUCCESS(list); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|