Commit bb276021 by 陶光胜

通过电话号码查询商户

parent cf2bd5b6
......@@ -473,7 +473,7 @@ public class StoreApiServiceImpl implements StoreApiService {
public ServiceResponse<List<StoreDTO>> listStoreByStoreInfoId(Integer storeInfoId) {
StoreSearchDBDTO searchDBDTO = new StoreSearchDBDTO();
searchDBDTO.setStoreInfoId(storeInfoId);
com.github.pagehelper.Page<StoreDTO> storeDTOS = this.storeService.listStore(searchDBDTO, 1, Integer.MAX_VALUE);
com.github.pagehelper.Page<StoreDTO> storeDTOS = this.storeService.listStore(searchDBDTO, 1, 10000);
return ServiceResponse.success(storeDTOS.getResult());
}
......@@ -482,7 +482,7 @@ public class StoreApiServiceImpl implements StoreApiService {
StoreSearchDTO storeSearchDTO = new StoreSearchDTO();
storeSearchDTO.setEnterpriseId(enterpriseId);
storeSearchDTO.setSearch(search);
ServiceResponse<Page<StoreDTO>> response = this.listStore(storeSearchDTO, 1, Integer.MAX_VALUE);
ServiceResponse<Page<StoreDTO>> response = this.listStore(storeSearchDTO, 1, 10000);
if(response.isSuccess() && response.getResult() != null){
return ServiceResponse.success(response.getResult().getResult());
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment