package com.yeshi.base.entity.ad;
|
|
public enum AdPositionEnum {
|
splash("splash"),//开屏
|
splashHotStart("splashHotStart"),//热启动开屏
|
videoPlayPre("videoPlayPre"),//视频播放前贴
|
exitApp("exitApp"),//APP退出广告
|
videoSearch("videoSearch"),//搜索页广告
|
videoDetailFullVideo("videoDetailFullVideo"),//视频全屏广告
|
other("other");//其他广告位
|
|
private String positionName;
|
|
public String getPositionName() {
|
return positionName;
|
}
|
|
private AdPositionEnum(String positionName) {
|
this.positionName = positionName;
|
}
|
|
}
|