| 35501 |
ranu |
1 |
package com.spice.profitmandi.service.offers;
|
|
|
2 |
|
|
|
3 |
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
|
| 35549 |
ranu |
4 |
import com.spice.profitmandi.dao.model.BulletinOfferModal;
|
| 35501 |
ranu |
5 |
import com.spice.profitmandi.dao.model.TodayOfferModel;
|
|
|
6 |
import org.springframework.stereotype.Service;
|
|
|
7 |
|
|
|
8 |
import java.util.List;
|
|
|
9 |
|
|
|
10 |
@Service
|
|
|
11 |
public interface TodayOfferService {
|
|
|
12 |
|
|
|
13 |
|
| 35549 |
ranu |
14 |
List<BulletinOfferModal> findAllTodayCatalogOfferBulletin(List<Integer> regionIds)
|
|
|
15 |
throws ProfitMandiBusinessException;
|
|
|
16 |
|
|
|
17 |
List<BulletinOfferModal> findAllTodaySchemeBulletin(List<Integer> regionIds)
|
|
|
18 |
throws ProfitMandiBusinessException;
|
|
|
19 |
|
|
|
20 |
// @Override
|
|
|
21 |
List<BulletinOfferModal> findAllTodayWebOfferBulletin()
|
|
|
22 |
throws ProfitMandiBusinessException;
|
|
|
23 |
|
|
|
24 |
List<BulletinOfferModal> getAllTodayCreatedPreBookingList();
|
|
|
25 |
|
| 35501 |
ranu |
26 |
List<TodayOfferModel> findAllTodayOffer(String brand, int reatialerId) throws ProfitMandiBusinessException;
|
|
|
27 |
|
|
|
28 |
List<TodayOfferModel> groupSameOffers(List<TodayOfferModel> list);
|
|
|
29 |
}
|