| | |
| | | package com.oying.modules.pc.store.service; |
| | | |
| | | import com.oying.modules.pc.store.domain.Store; |
| | | import com.oying.modules.pc.store.domain.dto.StoreCustomerDetailDto; |
| | | import com.oying.modules.pc.store.domain.dto.StoreCustomerQueryCriteria; |
| | | import com.oying.modules.pc.store.domain.dto.StoreQueryCriteria; |
| | | import com.oying.utils.PageResult; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface StoreQueryService { |
| | | |
| | | StoreCustomerDetailDto getCustomerStoreDetail(StoreCustomerQueryCriteria criteria); |
| | | PageResult<Store> findPagedStores(StoreQueryCriteria criteria); |
| | | |
| | | } |