廖井涛
2025-11-28 67f0be5a1d634ba3274fa9366ceacc3580f056b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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;
    }
    
        
 
}