package com.cab.model; import java.util.Date; public class ContentPush { private Long id; private Integer order; private String contentTypeId; private String thumb; private String title; private String url; private Date pushTime; private ContentType contentType; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Integer getOrder() { return order; } public void setOrder(Integer order) { this.order = order; } public String getContentTypeId() { return contentTypeId; } public void setContentTypeId(String contentTypeId) { this.contentTypeId = contentTypeId == null ? null : contentTypeId.trim(); } public String getThumb() { return thumb; } public void setThumb(String thumb) { this.thumb = thumb == null ? null : thumb.trim(); } public String getTitle() { return title; } public void setTitle(String title) { this.title = title == null ? null : title.trim(); } public String getUrl() { return url; } public void setUrl(String url) { this.url = url == null ? null : url.trim(); } public Date getPushTime() { return pushTime; } public void setPushTime(Date pushTime) { this.pushTime = pushTime; } public ContentType getContentType() { return contentType; } public void setContentType(ContentType contentType) { this.contentType = contentType; } }