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
28
29
30
31
32
| package cn.stylefeng.guns.modular.business.service;
|
| import cn.stylefeng.guns.modular.business.entity.CounsellingInfo;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| import java.util.List;
|
| /**
| * <p>
| * 咨询师信息 服务类
| * </p>
| *
| * @author goupan
| * @since 2024-01-01
| */
| public interface ICounsellingInfoService extends IService<CounsellingInfo> {
|
|
| /**
| * 查询标签是否被引用
| * @param tagIds 标签ids
| * @return
| */
| long getCountCounsellingInfo(List<String> tagIds);
|
| /**
| * 添加或者修改咨询师信息
| * @param counsellingInfo
| */
| void saveOrUpdateCounsellingInfo(CounsellingInfo counsellingInfo);
|
| }
|
|