package com.cloudcross.ssp.model; import java.util.Date; import java.util.List; public class ZoneIndustry { private Long id; private Long zoneId; private Long industryId; private Date supdated; private Integer status; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public Long getZoneId() { return zoneId; } public void setZoneId(Long zoneId) { this.zoneId = zoneId; } public Long getIndustryId() { return industryId; } public void setIndustryId(Long industryId) { this.industryId = industryId; } public Date getSupdated() { return supdated; } public void setSupdated(Date supdated) { this.supdated = supdated; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } @Override public String toString() { return "ZoneIndustry [id=" + id + ", zoneId=" + zoneId + ", industryId=" + industryId + ", supdated=" + supdated + ", status=" + status + "]"; } }