办学质量监测教学评价系统
ageer
2025-05-03 009aa5f1a50293f5b32efcda879a233c6f83f6e1
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
package org.ruoyi.service;
 
 
import org.ruoyi.domain.bo.ChatAppStoreBo;
import org.ruoyi.domain.vo.ChatAppStoreVo;
import org.ruoyi.core.page.TableDataInfo;
import org.ruoyi.core.page.PageQuery;
 
import java.util.Collection;
import java.util.List;
 
/**
 * 应用商店Service接口
 *
 * @author ageerle
 * @date 2025-04-08
 */
public interface IChatAppStoreService {
 
    /**
     * 查询应用商店
     */
    ChatAppStoreVo queryById(Long id);
 
    /**
     * 查询应用商店列表
     */
    TableDataInfo<ChatAppStoreVo> queryPageList(ChatAppStoreBo bo, PageQuery pageQuery);
 
    /**
     * 查询应用商店列表
     */
    List<ChatAppStoreVo> queryList(ChatAppStoreBo bo);
 
    /**
     * 新增应用商店
     */
    Boolean insertByBo(ChatAppStoreBo bo);
 
    /**
     * 修改应用商店
     */
    Boolean updateByBo(ChatAppStoreBo bo);
 
    /**
     * 校验并批量删除应用商店信息
     */
    Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid);
}