package com.yeshi.buwan.dto.config;
|
|
/**
|
* 广告屏蔽IP设置
|
*/
|
public class ADShieldIPConfig {
|
|
//渠道
|
private String channel;
|
|
private IPShieldRule rule;
|
|
|
public String getChannel() {
|
return channel;
|
}
|
|
public void setChannel(String channel) {
|
this.channel = channel;
|
}
|
|
public IPShieldRule getRule() {
|
return rule;
|
}
|
|
public void setRule(IPShieldRule rule) {
|
this.rule = rule;
|
}
|
|
public static class IPShieldRule {
|
private String province;
|
private String city;
|
private Integer version;
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province;
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city;
|
}
|
|
public Integer getVersion() {
|
return version;
|
}
|
|
public void setVersion(Integer version) {
|
this.version = version;
|
}
|
}
|
}
|