View Javadoc

1   package ecar.pojo;
2   
3   // Generated Aug 13, 2009 2:24:15 PM by Hibernate Tools 3.2.0.CR1
4   
5   import javax.persistence.Column;
6   import javax.persistence.Embeddable;
7   
8   /**
9    * ItemEstUsutpfuacIettutfaPK generated by hbm2java
10   */
11  @Embeddable
12  public class ItemEstUsutpfuacIettutfaPK implements java.io.Serializable {
13  
14    private Long codTpfa;
15    private Long codIett;
16  
17    public ItemEstUsutpfuacIettutfaPK() {
18    }
19  
20    public ItemEstUsutpfuacIettutfaPK(Long codTpfa, Long codIett) {
21      this.codTpfa = codTpfa;
22      this.codIett = codIett;
23    }
24  
25    @Column(name = "COD_TPFA", nullable = false, length = 10)
26    public Long getCodTpfa() {
27      return this.codTpfa;
28    }
29  
30    public void setCodTpfa(Long codTpfa) {
31      this.codTpfa = codTpfa;
32    }
33  
34    @Column(name = "COD_IETT", nullable = false, length = 10)
35    public Long getCodIett() {
36      return this.codIett;
37    }
38  
39    public void setCodIett(Long codIett) {
40      this.codIett = codIett;
41    }
42  
43  }