Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | espaco | 1 | package br.gov.al.saude.srv.model.dto; |
| 2 | |||
| 3 | import java.io.Serializable; |
||
| 4 | |||
| 5 | public class ServidorAtivoDTO implements Serializable { |
||
| 6 | private static final long serialVersionUID = 1L; |
||
| 7 | |||
| 8 | private String cpf; |
||
| 9 | private String nome; |
||
| 10 | private String formaIngresso; |
||
| 11 | private Long matricula; |
||
| 12 | private Long matriculaDigito; |
||
| 13 | private Long nossoNumero; |
||
| 14 | private Long cargaHoraria; |
||
| 15 | private String cargoOuFuncao; |
||
| 16 | |||
| 17 | public ServidorAtivoDTO() { } |
||
| 18 | |||
| 19 | public ServidorAtivoDTO(String cpf, String nome, String formaIngresso, Long matricula, Long matriculaDigito, Long nossoNumero, Long cargaHoraria, String cargoOuFuncao) { |
||
| 20 | this.cpf = cpf; |
||
| 21 | this.nome = nome; |
||
| 22 | this.formaIngresso = formaIngresso; |
||
| 23 | this.matricula = matricula; |
||
| 24 | this.matriculaDigito = matriculaDigito; |
||
| 25 | this.nossoNumero = nossoNumero; |
||
| 26 | this.cargaHoraria = cargaHoraria; |
||
| 27 | this.cargoOuFuncao = cargoOuFuncao; |
||
| 28 | } |
||
| 29 | |||
| 30 | public String getCpf() { |
||
| 31 | return cpf; |
||
| 32 | } |
||
| 33 | public void setCpf(String cpf) { |
||
| 34 | this.cpf = cpf; |
||
| 35 | } |
||
| 36 | |||
| 37 | public String getNome() { |
||
| 38 | return nome; |
||
| 39 | } |
||
| 40 | public void setNome(String nome) { |
||
| 41 | this.nome = nome; |
||
| 42 | } |
||
| 43 | |||
| 44 | public String getFormaIngresso() { |
||
| 45 | return formaIngresso; |
||
| 46 | } |
||
| 47 | public void setFormaIngresso(String formaIngresso) { |
||
| 48 | this.formaIngresso = formaIngresso; |
||
| 49 | } |
||
| 50 | |||
| 51 | public Long getMatricula() { |
||
| 52 | return matricula; |
||
| 53 | } |
||
| 54 | public void setMatricula(Long matricula) { |
||
| 55 | this.matricula = matricula; |
||
| 56 | } |
||
| 57 | |||
| 58 | public Long getMatriculaDigito() { |
||
| 59 | return matriculaDigito; |
||
| 60 | } |
||
| 61 | public void setMatriculaDigito(Long matriculaDigito) { |
||
| 62 | this.matriculaDigito = matriculaDigito; |
||
| 63 | } |
||
| 64 | |||
| 65 | public Long getNossoNumero() { |
||
| 66 | return nossoNumero; |
||
| 67 | } |
||
| 68 | public void setNossoNumero(Long nossoNumero) { |
||
| 69 | this.nossoNumero = nossoNumero; |
||
| 70 | } |
||
| 71 | |||
| 72 | public Long getCargaHoraria() { |
||
| 73 | return cargaHoraria; |
||
| 74 | } |
||
| 75 | public void setCargaHoraria(Long cargaHoraria) { |
||
| 76 | this.cargaHoraria = cargaHoraria; |
||
| 77 | } |
||
| 78 | |||
| 79 | public String getCargoOuFuncao() { |
||
| 80 | return cargoOuFuncao; |
||
| 81 | } |
||
| 82 | public void setCargoOuFuncao(String cargoOuFuncao) { |
||
| 83 | this.cargoOuFuncao = cargoOuFuncao; |
||
| 84 | } |
||
| 85 | |||
| 86 | } |