廖井涛
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
package com.northglass.entity;
 
 
 
import javax.persistence.Entity;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
 
@Entity
@Table(name="gmms_horizontal")
public class Horizontal extends IdEntity{
 
    private String slicecageRank;
    private String state;
    private long typeId;
    private int count;
    private int flag;
    private long gourp;
    private String processcardId;
    
    
 
    
    public String getSlicecageRank() {
        return slicecageRank;
    }
    public void setSlicecageRank(String slicecageRank) {
        this.slicecageRank = slicecageRank;
    }
 
    
    public String getState() {
        return state;
    }
 
    public void setState(String state) {
        this.state = state;
    }
    
    public long getTypeId() {
        return typeId;
    }
 
    public void setTypeId(long typeId) {
        this.typeId = typeId;
    }
    
    public int getCount() {
        return count;
    }
 
    public void setCount(int count) {
        this.count = count;
    }
    
    public int getFlag() {
        return flag;
    }
 
    public void setFlag(int flag) {
        this.flag = flag;
    }
    
    public long getGourp() {
        return gourp;
    }
 
    public void setGourp(long gourp) {
        this.gourp = gourp;
    }
    
    public String getProcesscardId() {
        return processcardId;
    }
 
    public void setProcesscardId(String processcardId) {
        this.processcardId = processcardId;
    }
    
 
 
}