/* Options: Date: 2025-06-07 18:29:19 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: EjecutaQueryMxEmpFileRQ.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route("/Utilidades/Consultas/Listados/EjecutarMultiempresa") public static class EjecutaQueryMxEmpFileRQ implements IReturn { public Integer IDVista = null; public HashMap Parametros = null; public Lenguajes Lenguaje = null; public ArrayList ListaEmpresas = null; public Integer getIdVista() { return IDVista; } public EjecutaQueryMxEmpFileRQ setIdVista(Integer value) { this.IDVista = value; return this; } public HashMap getParametros() { return Parametros; } public EjecutaQueryMxEmpFileRQ setParametros(HashMap value) { this.Parametros = value; return this; } public Lenguajes getLenguaje() { return Lenguaje; } public EjecutaQueryMxEmpFileRQ setLenguaje(Lenguajes value) { this.Lenguaje = value; return this; } public ArrayList getListaEmpresas() { return ListaEmpresas; } public EjecutaQueryMxEmpFileRQ setListaEmpresas(ArrayList value) { this.ListaEmpresas = value; return this; } private static Object responseType = EjecutaQueryRS.class; public Object getResponseType() { return responseType; } } public static class EjecutaQueryRS { public ArrayList> DatosConsulta = null; public Integer TotalRegistros = null; public Integer TotalGrupos = null; public ArrayList SummaryList = null; public ArrayList> getDatosConsulta() { return DatosConsulta; } public EjecutaQueryRS setDatosConsulta(ArrayList> value) { this.DatosConsulta = value; return this; } public Integer getTotalRegistros() { return TotalRegistros; } public EjecutaQueryRS setTotalRegistros(Integer value) { this.TotalRegistros = value; return this; } public Integer getTotalGrupos() { return TotalGrupos; } public EjecutaQueryRS setTotalGrupos(Integer value) { this.TotalGrupos = value; return this; } public ArrayList getSummaryList() { return SummaryList; } public EjecutaQueryRS setSummaryList(ArrayList value) { this.SummaryList = value; return this; } } public static enum Lenguajes { Es, Pt, En; } }