Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.61 KB | None | 0 0
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package snp.gob.bo.gimodel.entidad;
  7.  
  8. import java.util.Date;
  9.  
  10. /**
  11. * Entidad responsable de la Tabla Seguimiento
  12. *
  13. * @author Eddy Valero
  14. * @see SigSeguimientoMapper
  15. * @version 1.0, 08/09/2016
  16. */
  17. public class Seguimiento {
  18.  
  19. Long idSeguimiento;
  20. Long id;
  21. Long idUsuario;
  22. Long idLogTrans;
  23. Long sm;
  24. Long numeroPublicacion;
  25. Long numeroRegistro;
  26. String serieRegistro;
  27. String etapa;
  28. Date fechaRecepcion;
  29. Date fechaFin;
  30. int plazoReal;
  31. Long totalTiempo;
  32. String observacion;
  33. Boolean editable;
  34. String estado;
  35. int plazo_limite;
  36. public Long getIdSeguimiento() {
  37. return idSeguimiento;
  38. }
  39.  
  40. public void setIdSeguimiento(Long idSeguimiento) {
  41. this.idSeguimiento = idSeguimiento;
  42. }
  43.  
  44. public Long getId() {
  45. return id;
  46. }
  47.  
  48. public void setId(Long id) {
  49. this.id = id;
  50. }
  51.  
  52. public Long getIdUsuario() {
  53. return idUsuario;
  54. }
  55.  
  56. public void setIdUsuario(Long idUsuario) {
  57. this.idUsuario = idUsuario;
  58. }
  59.  
  60. public Long getIdLogTrans() {
  61. return idLogTrans;
  62. }
  63.  
  64. public void setIdLogTrans(Long idLogTrans) {
  65. this.idLogTrans = idLogTrans;
  66. }
  67.  
  68. public Long getSm() {
  69. return sm;
  70. }
  71.  
  72. public void setSm(Long sm) {
  73. this.sm = sm;
  74. }
  75.  
  76. public Long getNumeroPublicacion() {
  77. return numeroPublicacion;
  78. }
  79.  
  80. public void setNumeroPublicacion(Long numeroPublicacion) {
  81. this.numeroPublicacion = numeroPublicacion;
  82. }
  83.  
  84. public Long getNumeroRegistro() {
  85. return numeroRegistro;
  86. }
  87.  
  88. public void setNumeroRegistro(Long numeroRegistro) {
  89. this.numeroRegistro = numeroRegistro;
  90. }
  91.  
  92. public String getSerieRegistro() {
  93. return serieRegistro;
  94. }
  95.  
  96. public void setSerieRegistro(String serieRegistro) {
  97. this.serieRegistro = serieRegistro;
  98. }
  99.  
  100. public String getEtapa() {
  101. return etapa;
  102. }
  103.  
  104. public void setEtapa(String etapa) {
  105. this.etapa = etapa;
  106. }
  107.  
  108. public Date getFechaRecepcion() {
  109. return fechaRecepcion;
  110. }
  111.  
  112. public void setFechaRecepcion(Date fechaRecepcion) {
  113. this.fechaRecepcion = fechaRecepcion;
  114. }
  115.  
  116. public Date getFechaFin() {
  117. return fechaFin;
  118. }
  119.  
  120. public void setFechaFin(Date fechaFin) {
  121. this.fechaFin = fechaFin;
  122. }
  123.  
  124. public int getPlazoReal() {
  125. return plazoReal;
  126. }
  127.  
  128. public void setPlazoReal(int plazoReal) {
  129. this.plazoReal = plazoReal;
  130. }
  131.  
  132. public String getObservacion() {
  133. return observacion;
  134. }
  135.  
  136. public void setObservacion(String observacion) {
  137. this.observacion = observacion;
  138. }
  139.  
  140. public Boolean getEditable() {
  141. return editable;
  142. }
  143.  
  144. public void setEditable(Boolean editable) {
  145. this.editable = editable;
  146. }
  147.  
  148. public String getEstado() {
  149. return estado;
  150. }
  151.  
  152. public void setEstado(String estado) {
  153. this.estado = estado;
  154. }
  155.  
  156. public Long getTotalTiempo() {
  157. return totalTiempo;
  158. }
  159.  
  160. public void setTotalTiempo(Long totalTiempo) {
  161. this.totalTiempo = totalTiempo;
  162. }
  163.  
  164. public Integer getPlazo_limite() {
  165. return plazo_limite;
  166. }
  167.  
  168. public void setPlazo_limite(Integer plazo_limite) {
  169. this.plazo_limite = plazo_limite;
  170. }
  171.  
  172. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement