廖井涛
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
43
44
45
46
47
48
49
50
51
52
53
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;
    }
        
 
}