package com.northglass.entity;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_edg_perimeter")
|
public class EdgPerimeter extends IdEntity{
|
|
private BigDecimal width;
|
private BigDecimal height;
|
private Date startTime;
|
|
private Long groups;
|
|
|
|
|
public BigDecimal getWidth() {
|
return width;
|
}
|
public void setWidth(BigDecimal width) {
|
this.width = width;
|
}
|
public BigDecimal getHeight() {
|
return height;
|
}
|
public void setHeight(BigDecimal height) {
|
this.height = height;
|
}
|
|
|
public Date getStartTime() {
|
return startTime;
|
}
|
|
public void setStartTime(Date startTime) {
|
this.startTime = startTime;
|
}
|
|
public Long getGroups() {
|
return groups;
|
}
|
|
public void setGroups(Long groups) {
|
this.groups = groups;
|
}
|
|
|
}
|