1.
phpcjl
2024-12-10 071153064e6771e377ee148712be012dba9e13c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.ruoyi.other.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.other.api.domain.Shop;
import com.ruoyi.other.vo.NearbyShopVO;
import com.ruoyi.other.vo.ShopDetailVO;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author luodangjia
 * @since 2024-11-20
 */
public interface ShopService extends IService<Shop> {
 
    List<Shop> getShopList(Shop shop);
 
    List<NearbyShopVO> nearbyShopList(BigDecimal longitude, BigDecimal latitude);
 
    ShopDetailVO getShopDetail(Integer shopId, BigDecimal longitude, BigDecimal latitude);
 
}