package com.northglass.entity;
|
|
import java.util.Date;
|
|
import javax.persistence.Entity;
|
import javax.persistence.Table;
|
|
@Entity
|
@Table(name="gmms_identify_error")
|
public class IdentifyError extends IdEntity{
|
|
private double widtherror;
|
private double heigtherror;
|
private int groups;
|
|
|
|
|
public double getWidtherror() {
|
return widtherror;
|
}
|
public void setWidtherror(double widtherror) {
|
this.widtherror = widtherror;
|
}
|
|
public double getHeigtherror() {
|
return heigtherror;
|
}
|
public void setHeigtherror(double heigtherror) {
|
this.heigtherror = heigtherror;
|
}
|
public int getGroups() {
|
return groups;
|
}
|
|
public void setGroups(int groups) {
|
this.groups = groups;
|
}
|
|
|
|
}
|