puzhibing
2023-11-25 53e7558400dcacecdce70e39ebfe1727740f9296
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 com.dsh.other.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.other.entity.Banner;
import com.dsh.other.feignclient.model.AdvertisementChangeStateDTO;
import com.dsh.other.feignclient.model.AdvertisementQuery;
 
import java.util.List;
 
import com.dsh.other.entity.CreateHistoryDto;
import com.dsh.other.entity.GetHistoryDto;
import com.dsh.other.model.BannerVo;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @date 2023/7/11 17:47
 */
public interface IBannerService extends IService<Banner> {
    int changeState(AdvertisementChangeStateDTO dto);
 
    List<Banner> listAll(AdvertisementQuery query);
 
    void createHistory(CreateHistoryDto createHistoryDto);
 
    List<GetHistoryDto> gethistory(Integer studentId);
 
    String getFirst();
 
    List<BannerVo> list1(Integer position);
}