nosi.webapps.igrp.pages.editartransacao.EditarTransacao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of igrp-core Show documentation
Show all versions of igrp-core Show documentation
IGRP Framework is a powerful and highly customizable platform developed by the Operational Nucleus for the Information Society (NOSi) to create web applications, it provides out of box, several modules to make easy to create stand-alone, production-grade web applications: authentication and access-control, business processes automation, reporting, page builder with automatic code generation and incorporation of the Once-Only-Principle, written in Java. IGRP Framework WAR - Contains some keys resources that give UI to IGRP Framework and others supports files.
package nosi.webapps.igrp.pages.editartransacao;
import nosi.core.validator.constraints.*;
import nosi.core.webapp.Model;
import nosi.core.webapp.RParam;
public class EditarTransacao extends Model{
@RParam(rParamName = "p_sectionheader_1_text")
private String sectionheader_1_text;
@RParam(rParamName = "p_aplicacao")
private String aplicacao;
@RParam(rParamName = "p_descricao")
private String descricao;
@NotNull()
@RParam(rParamName = "p_codigo")
private String codigo;
@RParam(rParamName = "p_status")
private int status;
@RParam(rParamName = "p_status_check")
private int status_check;
@RParam(rParamName = "p_id")
private int id;
public void setSectionheader_1_text(String sectionheader_1_text){
this.sectionheader_1_text = sectionheader_1_text;
}
public String getSectionheader_1_text(){
return this.sectionheader_1_text;
}
public void setAplicacao(String aplicacao){
this.aplicacao = aplicacao;
}
public String getAplicacao(){
return this.aplicacao;
}
public void setDescricao(String descricao){
this.descricao = descricao;
}
public String getDescricao(){
return this.descricao;
}
public void setCodigo(String codigo){
this.codigo = codigo;
}
public String getCodigo(){
return this.codigo;
}
public void setStatus(int status){
this.status = status;
}
public int getStatus(){
return this.status;
}
public void setStatus_check(int status_check){
this.status_check = status_check;
}
public int getStatus_check(){
return this.status_check;
}
public void setId(int id){
this.id = id;
}
public int getId(){
return this.id;
}
}