package com.java110.vo.api.advert;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class ApiAdvertDataVo implements Serializable {
|
|
private String advertId;
|
private String adName;
|
private String adTypeCd;
|
private String classify;
|
private String classifyName;
|
private String locationTypeCd;
|
private String locationObjId;
|
private String locationObjName;
|
private String state;
|
private String stateName;
|
private String seq;
|
private String startTime;
|
private String endTime;
|
private String floorId;
|
private String floorNum;
|
private String unitId;
|
private String unitNum;
|
private String roomId;
|
private String roomNum;
|
private String createTime;
|
|
private String viewType;
|
private String advertType ;
|
private String pageUrl ;
|
|
|
public String getAdvertId() {
|
return advertId;
|
}
|
|
public void setAdvertId(String advertId) {
|
this.advertId = advertId;
|
}
|
|
public String getAdName() {
|
return adName;
|
}
|
|
public void setAdName(String adName) {
|
this.adName = adName;
|
}
|
|
public String getAdTypeCd() {
|
return adTypeCd;
|
}
|
|
public void setAdTypeCd(String adTypeCd) {
|
this.adTypeCd = adTypeCd;
|
}
|
|
public String getClassify() {
|
return classify;
|
}
|
|
public void setClassify(String classify) {
|
this.classify = classify;
|
}
|
|
public String getLocationTypeCd() {
|
return locationTypeCd;
|
}
|
|
public void setLocationTypeCd(String locationTypeCd) {
|
this.locationTypeCd = locationTypeCd;
|
}
|
|
public String getLocationObjId() {
|
return locationObjId;
|
}
|
|
public void setLocationObjId(String locationObjId) {
|
this.locationObjId = locationObjId;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getSeq() {
|
return seq;
|
}
|
|
public void setSeq(String seq) {
|
this.seq = seq;
|
}
|
|
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 String getClassifyName() {
|
return classifyName;
|
}
|
|
public void setClassifyName(String classifyName) {
|
this.classifyName = classifyName;
|
}
|
|
public String getStateName() {
|
return stateName;
|
}
|
|
public void setStateName(String stateName) {
|
this.stateName = stateName;
|
}
|
|
public String getLocationObjName() {
|
return locationObjName;
|
}
|
|
public void setLocationObjName(String locationObjName) {
|
this.locationObjName = locationObjName;
|
}
|
|
public String getFloorId() {
|
return floorId;
|
}
|
|
public void setFloorId(String floorId) {
|
this.floorId = floorId;
|
}
|
|
public String getFloorNum() {
|
return floorNum;
|
}
|
|
public void setFloorNum(String floorNum) {
|
this.floorNum = floorNum;
|
}
|
|
public String getUnitId() {
|
return unitId;
|
}
|
|
public void setUnitId(String unitId) {
|
this.unitId = unitId;
|
}
|
|
public String getUnitNum() {
|
return unitNum;
|
}
|
|
public void setUnitNum(String unitNum) {
|
this.unitNum = unitNum;
|
}
|
|
public String getRoomId() {
|
return roomId;
|
}
|
|
public void setRoomId(String roomId) {
|
this.roomId = roomId;
|
}
|
|
public String getRoomNum() {
|
return roomNum;
|
}
|
|
public void setRoomNum(String roomNum) {
|
this.roomNum = roomNum;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getViewType() {
|
return viewType;
|
}
|
|
public void setViewType(String viewType) {
|
this.viewType = viewType;
|
}
|
|
public String getAdvertType() {
|
return advertType;
|
}
|
|
public void setAdvertType(String advertType) {
|
this.advertType = advertType;
|
}
|
|
public String getPageUrl() {
|
return pageUrl;
|
}
|
|
public void setPageUrl(String pageUrl) {
|
this.pageUrl = pageUrl;
|
}
|
}
|