add
yj
2024-12-05 b9900893177c78fc559223521fe839aa21000017
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
package com.iotechn.unimall.app.api.advert;
 
import com.dobbinsoft.fw.core.annotation.HttpMethod;
import com.dobbinsoft.fw.core.annotation.HttpOpenApi;
import com.dobbinsoft.fw.core.annotation.HttpParam;
import com.dobbinsoft.fw.core.annotation.HttpParamType;
import com.dobbinsoft.fw.core.exception.ServiceException;
import com.iotechn.unimall.data.domain.AdvertDO;
 
import java.util.List;
 
/**
 * Created with IntelliJ IDEA.
 * Description:
 * User: kbq
 * Date: 2019-07-08
 * Time: 下午8:22
 */
 
@HttpOpenApi(group = "advert",description = "广告推销")
public interface AdvertService {
 
    @HttpMethod(description = "取得活跃广告")
    public List<AdvertDO> getActiveAd(
            @HttpParam(name = "adType", type = HttpParamType.COMMON, description = "广告类型") Integer adType)throws ServiceException;
 
}