|
@@ -14,6 +14,8 @@ public class BannerTemplate {
|
|
private Long agentId;
|
|
private Long agentId;
|
|
//广告主id
|
|
//广告主id
|
|
private Long advertiserId;
|
|
private Long advertiserId;
|
|
|
|
+ //运营商id
|
|
|
|
+ private Long operatorId;
|
|
//模板名称
|
|
//模板名称
|
|
private String name;
|
|
private String name;
|
|
//上传文件路径
|
|
//上传文件路径
|
|
@@ -50,6 +52,12 @@ public class BannerTemplate {
|
|
public void setAdvertiserId(Long advertiserId) {
|
|
public void setAdvertiserId(Long advertiserId) {
|
|
this.advertiserId = advertiserId;
|
|
this.advertiserId = advertiserId;
|
|
}
|
|
}
|
|
|
|
+ public Long getOperatorId() {
|
|
|
|
+ return operatorId;
|
|
|
|
+ }
|
|
|
|
+ public void setOperatorId(Long operatorId) {
|
|
|
|
+ this.operatorId = operatorId;
|
|
|
|
+ }
|
|
public String getName() {
|
|
public String getName() {
|
|
return name;
|
|
return name;
|
|
}
|
|
}
|
|
@@ -98,7 +106,6 @@ public class BannerTemplate {
|
|
public void setUpdated(Date updated) {
|
|
public void setUpdated(Date updated) {
|
|
this.updated = updated;
|
|
this.updated = updated;
|
|
}
|
|
}
|
|
-
|
|
|
|
public AuditBanner getBanner() {
|
|
public AuditBanner getBanner() {
|
|
return banner;
|
|
return banner;
|
|
}
|
|
}
|
|
@@ -108,11 +115,11 @@ public class BannerTemplate {
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "BannerTemplate [id=" + id + ", agentId=" + agentId
|
|
return "BannerTemplate [id=" + id + ", agentId=" + agentId
|
|
- + ", advertiserId=" + advertiserId + ", name=" + name
|
|
|
|
- + ", path=" + path + ", pathSmall=" + pathSmall + ", type="
|
|
|
|
- + type + ", width=" + width + ", height=" + height
|
|
|
|
- + ", status=" + status + ", updated=" + updated + ", banner="
|
|
|
|
- + banner + "]";
|
|
|
|
|
|
+ + ", advertiserId=" + advertiserId + ", operatorId="
|
|
|
|
+ + operatorId + ", name=" + name + ", path=" + path
|
|
|
|
+ + ", pathSmall=" + pathSmall + ", type=" + type + ", width="
|
|
|
|
+ + width + ", height=" + height + ", status=" + status
|
|
|
|
+ + ", updated=" + updated + ", banner=" + banner + "]";
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|