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 ItemEstrtBenefIettbPK implements java.io.Serializable {
13
14 private Long codIett;
15 private Long codBnf;
16
17 public ItemEstrtBenefIettbPK() {
18 }
19
20 public ItemEstrtBenefIettbPK(Long codIett, Long codBnf) {
21 this.codIett = codIett;
22 this.codBnf = codBnf;
23 }
24
25 @Column(name = "COD_IETT", nullable = false, length = 10)
26 public Long getCodIett() {
27 return this.codIett;
28 }
29
30 public void setCodIett(Long codIett) {
31 this.codIett = codIett;
32 }
33
34 @Column(name = "COD_BNF", nullable = false, length = 10)
35 public Long getCodBnf() {
36 return this.codBnf;
37 }
38
39 public void setCodBnf(Long codBnf) {
40 this.codBnf = codBnf;
41 }
42
43 }