zhaowenxuan
2025-02-06 06c12d2b42c343798d9476be66031b48967df639
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package com.ltkj.mall.service;
 
import java.util.List;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ltkj.mall.domain.MallFootprint;
import com.ltkj.mall.domain.MallKeyword;
 
/**
 * 关键字Service接口
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-07-13
 */
public interface IMallKeywordService extends IService<MallKeyword> {
    /**
     * 查询关键字
     *
     * @param id 关键字主键
     * @return 关键字
     */
    public MallKeyword selectMallKeywordById(Long id);
 
    /**
     * 查询关键字列表
     *
     * @param mallKeyword 关键字
     * @return 关键字集合
     */
    public List<MallKeyword> selectMallKeywordList(MallKeyword mallKeyword);
 
    /**
     * 新增关键字
     *
     * @param mallKeyword 关键字
     * @return 结果
     */
    public int insertMallKeyword(MallKeyword mallKeyword);
 
    /**
     * 修改关键字
     *
     * @param mallKeyword 关键字
     * @return 结果
     */
    public int updateMallKeyword(MallKeyword mallKeyword);
 
    /**
     * 批量删除关键字
     *
     * @param ids 需要删除的关键字主键集合
     * @return 结果
     */
    public int deleteMallKeywordByIds(Long[] ids);
 
    /**
     * 删除关键字信息
     *
     * @param id 关键字主键
     * @return 结果
     */
    public int deleteMallKeywordById(Long id);
 
 
    String getKeyNames(String[] ids);
 
    List<String> getKeyIds(String[] ids);
}