diff --git a/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarefaGeracaoCorridaVO.java b/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarefaGeracaoCorridaVO.java new file mode 100644 index 000000000..531e283e3 --- /dev/null +++ b/src/com/rjconsultores/ventaboletos/vo/esquemaoperacional/TarefaGeracaoCorridaVO.java @@ -0,0 +1,47 @@ +package com.rjconsultores.ventaboletos.vo.esquemaoperacional; + +public class TarefaGeracaoCorridaVO { + + private String tarefa; + private String status; + private String codStatus; + + public TarefaGeracaoCorridaVO() { + super(); + } + + + + public TarefaGeracaoCorridaVO(String tarefa, String status, String codStatus) { + super(); + this.tarefa = tarefa; + this.status = status; + this.codStatus = codStatus; + } + + + + public String getTarefa() { + return tarefa; + } + + public void setTarefa(String tarefa) { + this.tarefa = tarefa; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status; + } + + public String getCodStatus() { + return codStatus; + } + + public void setCodStatus(String codStatus) { + this.codStatus = codStatus; + } +}