1 package ecar.pojo;
2
3
4
5 import javax.persistence.Column;
6 import javax.persistence.Embeddable;
7
8
9
10
11 @Embeddable
12 public class TipoAcompGrpAcessoId implements java.io.Serializable {
13
14 private Long codTa;
15 private Long codSatb;
16
17 public TipoAcompGrpAcessoId() {
18 }
19
20 public TipoAcompGrpAcessoId(Long codTa, Long codSatb) {
21 this.codTa = codTa;
22 this.codSatb = codSatb;
23 }
24
25 @Column(name = "cod_ta", nullable = false)
26 public Long getCodTa() {
27 return this.codTa;
28 }
29
30 public void setCodTa(Long codTa) {
31 this.codTa = codTa;
32 }
33
34 @Column(name = "cod_satb", nullable = false)
35 public Long getCodSatb() {
36 return this.codSatb;
37 }
38
39 public void setCodSatb(Long codSatb) {
40 this.codSatb = codSatb;
41 }
42
43 }