fixes bug #AL-2734

master
valdevir 2023-08-14 15:34:10 -03:00
parent 9e2be5e93d
commit c3182a3ad5
1 changed files with 47 additions and 0 deletions

View File

@ -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;
}
}