You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
3.5 KiB
149 lines
3.5 KiB
package com.hai.service;
|
|
|
|
import com.github.pagehelper.PageInfo;
|
|
import com.hai.entity.HighMerchantStore;
|
|
import com.hai.entity.HighStoreOilCard;
|
|
import com.hai.model.GasSelfBuiltStationModel;
|
|
import com.hai.model.HighMerchantStoreModel;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 门店服务
|
|
* @Date 2021/3/9 20:15
|
|
**/
|
|
public interface HighMerchantStoreService {
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 增加门店
|
|
* @Date 2021/3/9 20:26
|
|
**/
|
|
void insertMerchantStore(HighMerchantStoreModel highMerchantStore) throws Exception;
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 批量增加门店
|
|
* @Date 2021/3/26 20:20
|
|
**/
|
|
void insertMerchantStoreList(List<HighMerchantStoreModel> highMerchantStoreList) throws Exception;
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 修改门店
|
|
* @Date 2021/3/12 22:15
|
|
**/
|
|
void updateMerchantStore(HighMerchantStoreModel highMerchantStore) throws Exception;
|
|
|
|
/**
|
|
* 修改门店
|
|
* @param highMerchantStore
|
|
* @throws Exception
|
|
*/
|
|
void updateMerchantStoreDetail(HighMerchantStore highMerchantStore);
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 删除门店
|
|
* @Date 2021/3/10 22:24
|
|
**/
|
|
void deleteMerchantStore(Long id);
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 根据id查询
|
|
* @Date 2021/3/9 20:26
|
|
**/
|
|
HighMerchantStoreModel getMerchantStoreById(Long id);
|
|
|
|
/**
|
|
* 根据key 查询
|
|
* @param storeKey
|
|
* @return
|
|
*/
|
|
HighMerchantStoreModel getMerchantStoreByKey(String storeKey);
|
|
|
|
/**
|
|
*
|
|
* @param storeKey
|
|
* @return
|
|
*/
|
|
HighMerchantStore getMerStoreDetailByKey(String storeKey);
|
|
|
|
/**
|
|
* 根据查询
|
|
* @param id
|
|
* @return
|
|
*/
|
|
HighMerchantStore getDetailById(Long id);
|
|
|
|
/**
|
|
* 查询门店列表
|
|
* @param merId
|
|
* @return
|
|
*/
|
|
List<HighMerchantStore> getStoreListByMer(Long merId);
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 查询门店列表
|
|
* @Date 2021/3/9 20:26
|
|
**/
|
|
List<HighMerchantStore> getMerchantStoreList(Map<String, Object> map);
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 查询门店列表(计算精度)
|
|
* @Date 2021/4/1 20:34
|
|
**/
|
|
List<HighMerchantStore> getStoreListByLongitude(Map<String, Object> map);
|
|
|
|
/**
|
|
* 查询自建站 油站
|
|
* @param map
|
|
* @return
|
|
*/
|
|
List<GasSelfBuiltStationModel> getGasSelfBuiltStationList(Map<String, Object> map);
|
|
|
|
/**
|
|
* @Author Sum1Dream
|
|
* @Name insertStoreOilCard
|
|
* @Description // 新增门店油卡
|
|
* @Date 14:28 2023/11/2
|
|
* @Param highStoreOilCard
|
|
* @return void
|
|
*/
|
|
void insertStoreOilCard(HighStoreOilCard highStoreOilCard) throws Exception;
|
|
|
|
/**
|
|
* @Author 胡锐
|
|
* @Description 修改新增门店油卡
|
|
* @Date 2021/3/12 22:15
|
|
**/
|
|
void updateStoreOilCard(HighStoreOilCard highStoreOilCard) throws Exception;
|
|
|
|
|
|
/**
|
|
* @Author Sum1Dream
|
|
* @Name findStoreOilCard
|
|
* @Description // 查询门店油卡
|
|
* @Date 14:42 2023/11/2
|
|
* @Param id
|
|
* @return com.hai.entity.HighStoreOilCard
|
|
*/
|
|
HighStoreOilCard findStoreOilCard(Long id);
|
|
|
|
/**
|
|
* @Author Sum1Dream
|
|
* @Name getStoreOilCardList
|
|
* @Description //TODO
|
|
* @Date 14:32 2023/11/2
|
|
* @Param map
|
|
* @return java.util.List<com.hai.entity.HighStoreOilCard>
|
|
*/
|
|
List<HighStoreOilCard> getStoreOilCardList(Long storeId);
|
|
|
|
|
|
}
|
|
|