luo
2023-10-09 014d7a35addafbc63689cda7c20bae61951f7852
cloud-server-other/src/main/java/com/dsh/other/service/IBannerService.java
@@ -2,6 +2,10 @@
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;
@@ -12,7 +16,11 @@
 * @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);
}