mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
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
package com.dg.core.service;
 
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.dg.core.ResultData;
import com.dg.core.db.gen.entity.Slideshow;
import com.dg.core.db.gen.entity.SysUser;
 
import java.util.List;
 
public interface ISlideshowService {
 
    /**
     * 查询轮播图列表(分页)
     *
     * @return 参数配置信息
     */
     List<Slideshow> selectConfigList(IPage<SysUser> page, Integer state);
 
    /**
     * 查询轮播图列表(不分页)
     *
     * @return 参数配置信息
     */
    List<Slideshow> selectList();
 
    /**
     * 根据id 查询轮播图数据
     *
     * @return 参数配置信息
     */
    Slideshow queryById(Integer id);
 
    /**
     * 新增轮播图数据
     *
     * @return 参数配置信息
     */
    ResultData add(Slideshow slideshow);
 
    /**
     * 修改轮播图数据
     *
     * @return 参数配置信息
     */
    ResultData update(Slideshow slideshow);
 
 
    /**
     * 删除轮播图数据
     *
     * @return 参数配置信息
     */
    ResultData delete(Integer id);
 
}