/* Options: Date: 2025-06-07 16:37:11 Version: 8.12 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://soluser-recaudo.sgsas.co //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: InsertReportRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/restfiles/InsertReportRQ") public static class InsertReportRQ implements IReturn { public String usua_login = null; public BigDecimal carp_carp = null; public BigDecimal rept_rept = null; public String rept_nombre = null; public Integer rept_tipo = null; public Date rept_fecmodi = null; public Date rept_fecelimi = null; public String rept_version = null; public Integer rept_tamano = null; public BigDecimal blob_blob = null; public BigDecimal vist_vist = null; public String getUsuaLogin() { return usua_login; } public InsertReportRQ setUsuaLogin(String value) { this.usua_login = value; return this; } public BigDecimal getCarpCarp() { return carp_carp; } public InsertReportRQ setCarpCarp(BigDecimal value) { this.carp_carp = value; return this; } public BigDecimal getReptRept() { return rept_rept; } public InsertReportRQ setReptRept(BigDecimal value) { this.rept_rept = value; return this; } public String getReptNombre() { return rept_nombre; } public InsertReportRQ setReptNombre(String value) { this.rept_nombre = value; return this; } public Integer getReptTipo() { return rept_tipo; } public InsertReportRQ setReptTipo(Integer value) { this.rept_tipo = value; return this; } public Date getReptFecmodi() { return rept_fecmodi; } public InsertReportRQ setReptFecmodi(Date value) { this.rept_fecmodi = value; return this; } public Date getReptFecelimi() { return rept_fecelimi; } public InsertReportRQ setReptFecelimi(Date value) { this.rept_fecelimi = value; return this; } public String getReptVersion() { return rept_version; } public InsertReportRQ setReptVersion(String value) { this.rept_version = value; return this; } public Integer getReptTamano() { return rept_tamano; } public InsertReportRQ setReptTamano(Integer value) { this.rept_tamano = value; return this; } public BigDecimal getBlobBlob() { return blob_blob; } public InsertReportRQ setBlobBlob(BigDecimal value) { this.blob_blob = value; return this; } public BigDecimal getVistVist() { return vist_vist; } public InsertReportRQ setVistVist(BigDecimal value) { this.vist_vist = value; return this; } private static Object responseType = InsertReportRS.class; public Object getResponseType() { return responseType; } } public static class InsertReportRS { public Boolean isInsertado = null; public String Error = null; public Boolean getIsInsertado() { return isInsertado; } public InsertReportRS setIsInsertado(Boolean value) { this.isInsertado = value; return this; } public String getError() { return Error; } public InsertReportRS setError(String value) { this.Error = value; return this; } } }