feat():提交查询客户方法
parent
40721c92c2
commit
d8e8c5a058
|
@ -95,6 +95,7 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.muyu</groupId>
|
<groupId>com.muyu</groupId>
|
||||||
<artifactId>cloud-common-nacos-remote</artifactId>
|
<artifactId>cloud-common-nacos-remote</artifactId>
|
||||||
|
<version>1.0.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
|
@ -14,4 +14,11 @@ public interface OrderPayCustomerService extends IService<OrderPayCustomer> {
|
||||||
* @return 客户集合
|
* @return 客户集合
|
||||||
*/
|
*/
|
||||||
public List<CustomerResp> selectList(CustomerListReq customerListReq);
|
public List<CustomerResp> selectList(CustomerListReq customerListReq);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取所有的客户
|
||||||
|
* @return 客户集合
|
||||||
|
*/
|
||||||
|
List<String> getCustomerAllList();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,9 @@ public class OrderPayCustomerServiceImpl extends ServiceImpl<OrderPayCustomerMap
|
||||||
@Resource(type = OrderPayServiceImpl.class)
|
@Resource(type = OrderPayServiceImpl.class)
|
||||||
private OrderPayService orderPayService;
|
private OrderPayService orderPayService;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
private NacosService nacosService;
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public List<CustomerResp> selectList(CustomerListReq customerListReq) {
|
public List<CustomerResp> selectList(CustomerListReq customerListReq) {
|
||||||
|
@ -87,9 +90,6 @@ public class OrderPayCustomerServiceImpl extends ServiceImpl<OrderPayCustomerMap
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Resource
|
|
||||||
private NacosService nacosService;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取所有的用户
|
* 获取所有的用户
|
||||||
* @return 客户集合
|
* @return 客户集合
|
||||||
|
|
Loading…
Reference in New Issue