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 UnidadeOrcamentariaPeriodoExercicioUoPerExePK implements java.io.Serializable {
13
14 private Long codUo;
15 private Long codPerExe;
16
17 public UnidadeOrcamentariaPeriodoExercicioUoPerExePK() {
18 }
19
20 public UnidadeOrcamentariaPeriodoExercicioUoPerExePK(Long codUo, Long codPerExe) {
21 this.codUo = codUo;
22 this.codPerExe = codPerExe;
23 }
24
25 @Column(name = "cod_uo", nullable = false, length = 10)
26 public Long getCodUo() {
27 return this.codUo;
28 }
29
30 public void setCodUo(Long codUo) {
31 this.codUo = codUo;
32 }
33
34 @Column(name = "cod_perexe", nullable = false, length = 10)
35 public Long getCodPerExe() {
36 return this.codPerExe;
37 }
38
39 public void setCodPerExe(Long codPerExe) {
40 this.codPerExe = codPerExe;
41 }
42
43 }