package com.yeshi.buwan.domain.ad;
|
|
import java.util.Date;
|
|
/**
|
* @author hxh
|
* @title: AdAreaConfig
|
* @description: 广告地域配置
|
* @date 2024/10/24 10:47
|
*/
|
public class AdAreaConfig {
|
private Long id;
|
private Long detailSystemId;
|
private String channel;
|
private ThirdAdType adType;
|
private String provinces;
|
private String positions;
|
private String citys;
|
private String startTime;
|
private String endTime;
|
private Date createTime;
|
private Date updateTime;
|
|
public AdAreaConfig() {
|
}
|
|
public AdAreaConfig(Long id) {
|
this.id = id;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getDetailSystemId() {
|
return detailSystemId;
|
}
|
|
public void setDetailSystemId(Long detailSystemId) {
|
this.detailSystemId = detailSystemId;
|
}
|
|
public String getChannel() {
|
return channel;
|
}
|
|
public void setChannel(String channel) {
|
this.channel = channel;
|
}
|
|
public ThirdAdType getAdType() {
|
return adType;
|
}
|
|
public void setAdType(ThirdAdType adType) {
|
this.adType = adType;
|
}
|
|
public String getProvinces() {
|
return provinces;
|
}
|
|
public void setProvinces(String provinces) {
|
this.provinces = provinces;
|
}
|
|
public String getCitys() {
|
return citys;
|
}
|
|
public void setCitys(String citys) {
|
this.citys = citys;
|
}
|
|
public String getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(String startTime) {
|
this.startTime = startTime;
|
}
|
|
public String getEndTime() {
|
return endTime;
|
}
|
|
public void setEndTime(String endTime) {
|
this.endTime = endTime;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getPositions() {
|
return positions;
|
}
|
|
public void setPositions(String positions) {
|
this.positions = positions;
|
}
|
}
|