Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. package Model;
  2.  
  3. public class Paciente {
  4.  
  5. public String getCod() {
  6. return cod;
  7. }
  8.  
  9. public void setCod(String cod) {
  10. this.cod = cod;
  11. }
  12.  
  13. public String getBairro() {
  14. return bairro;
  15. }
  16.  
  17. public void setBairro(String bairro) {
  18. this.bairro = bairro;
  19. }
  20.  
  21. public String getPaciente() {
  22. return paciente;
  23. }
  24.  
  25. public void setPaciente(String paciente) {
  26. this.paciente = paciente;
  27. }
  28.  
  29. public String getTelefone() {
  30. return telefone;
  31. }
  32.  
  33. public void setTelefone(String telefone) {
  34. this.telefone = telefone;
  35. }
  36.  
  37. public String getRG() {
  38. return RG;
  39. }
  40.  
  41. public void setRG(String RG) {
  42. this.RG = RG;
  43. }
  44.  
  45. String cod;
  46. String bairro;
  47. String paciente;
  48. String telefone;
  49. String RG;
  50.  
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement