Commit e1c8adc2 by 陶光胜

加字段

parent b5ccf3c3
......@@ -340,8 +340,8 @@ public class StoreApiServiceImpl implements StoreApiService {
public ServiceResponse<List<StoreDTO>> listStoreByStoreInfoId(Integer storeInfoId) {
StoreSearchDBDTO searchDBDTO = new StoreSearchDBDTO();
searchDBDTO.setStoreInfoId(storeInfoId);
this.storeService.listStore(searchDBDTO, 1, Integer.MAX_VALUE);
return null;
com.github.pagehelper.Page<StoreDTO> storeDTOS = this.storeService.listStore(searchDBDTO, 1, Integer.MAX_VALUE);
return ServiceResponse.success(storeDTOS.getResult());
}
@Override
......
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