feat():提交查询客户方法

master
86191 2024-08-04 14:59:35 +08:00
parent 40721c92c2
commit d8e8c5a058
3 changed files with 11 additions and 3 deletions

View File

@ -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>

View File

@ -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();
} }

View File

@ -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