admin
2024-10-30 010ef2a907e66efd4702443c06cdd18f8a7ffa5b
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
package com.yeshi.buwan.service.inter.ad;
 
import com.yeshi.buwan.domain.ad.AdAreaConfig;
import org.springframework.cache.annotation.Cacheable;
 
import java.util.List;
 
/**
 * @author hxh
 * @title: AdAreaConfigService
 * @description: 广告区域配置
 * @date 2024/10/24 11:12
 */
public interface AdAreaConfigService {
 
 
    /**
     * @author hxh 
     * @description 添加配置
     * @date 13:15 2024/10/24
     * @param: config
     * @return void
     **/
    public void addConfig(AdAreaConfig config);
 
 
    /**
     * @author hxh 
     * @description 更新配置
     * @date 13:15 2024/10/24
     * @param: config
     * @return void
     **/
    public void updateConfig(AdAreaConfig config);
 
    /**
     * @author hxh 
     * @description 根据渠道与系统ID查询
     * @date 13:15 2024/10/24
     * @param: channel
     * @param: detailSystemId
     * @return java.util.List<com.yeshi.buwan.domain.ad.AdAreaConfig>
     **/
    public List<AdAreaConfig> list(String channel,Long detailSystemId);
 
    public List<AdAreaConfig> listCache(String channel,Long detailSystemId);
 
 
    public List<AdAreaConfig> list(Long detailSystemId, int page, int pageSize);
 
    public long count(Long detailSystemId);
 
    public void delete(Long id);
 
    public AdAreaConfig get(Long id);
 
}