liusuyi
2026-05-12 9f327c33730ba10cb2d89aff99b727502232e968
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
package com.ard.work.carousel.service;
 
import java.util.List;
import com.ard.work.carousel.domain.ArdCarouselWindow;
 
/**
 * 视频轮播窗口Service接口
 * 
 * @author ruoyi
 * @date 2024-09-03
 */
public interface IArdCarouselWindowService 
{
    /**
     * 查询视频轮播窗口
     * 
     * @param id 视频轮播窗口主键
     * @return 视频轮播窗口
     */
    public ArdCarouselWindow selectArdCarouselWindowById(String id);
 
    /**
     * 查询视频轮播窗口列表
     * 
     * @param ardCarouselWindow 视频轮播窗口
     * @return 视频轮播窗口集合
     */
    public List<ArdCarouselWindow> selectArdCarouselWindowList(ArdCarouselWindow ardCarouselWindow);
 
    /**
     * 新增视频轮播窗口
     * 
     * @param ardCarouselWindow 视频轮播窗口
     * @return 结果
     */
    public int insertArdCarouselWindow(ArdCarouselWindow ardCarouselWindow);
 
    /**
     * 修改视频轮播窗口
     * 
     * @param ardCarouselWindow 视频轮播窗口
     * @return 结果
     */
    public int updateArdCarouselWindow(ArdCarouselWindow ardCarouselWindow);
 
    /**
     * 批量删除视频轮播窗口
     * 
     * @param ids 需要删除的视频轮播窗口主键集合
     * @return 结果
     */
    public int deleteArdCarouselWindowByIds(String[] ids);
 
    /**
     * 删除视频轮播窗口信息
     * 
     * @param id 视频轮播窗口主键
     * @return 结果
     */
    public int deleteArdCarouselWindowById(String id);
}