1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.ruoyi.other.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.other.api.domain.TechnicianSubscribe;
| import com.ruoyi.other.vo.TechnicianSubscribeVO;
|
| import java.util.List;
|
| /**
| * <p>
| * 服务类
| * </p>
| *
| * @author luodangjia
| * @since 2024-11-20
| */
| public interface TechnicianSubscribeService extends IService<TechnicianSubscribe> {
|
| /**
| * 查询用于指定门店的相关预约记录
| */
| List<TechnicianSubscribeVO> getTechnicianSubscribeByUserAndShop(Long userId, Long shopId);
|
| }
|
|