/* Options: Date: 2025-06-07 17:04:10 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: EjecutaQueryBackRQ.* //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/EjecucionBackground") public static class EjecutaQueryBackRQ implements IReturn { public Integer IDVista = null; public Boolean DatosDetalles = null; public HashMap Parametros = null; public Lenguajes Lenguaje = null; public Integer RecordSkip = null; public Integer RecordTake = null; public ArrayList Filter = null; public gridSortOptions Sort = null; public gridGroupOptions Group = null; public ArrayList SummaryGroupItems = null; public ArrayList SummaryTotalItems = null; public Integer getIdVista() { return IDVista; } public EjecutaQueryBackRQ setIdVista(Integer value) { this.IDVista = value; return this; } public Boolean isDatosDetalles() { return DatosDetalles; } public EjecutaQueryBackRQ setDatosDetalles(Boolean value) { this.DatosDetalles = value; return this; } public HashMap getParametros() { return Parametros; } public EjecutaQueryBackRQ setParametros(HashMap value) { this.Parametros = value; return this; } public Lenguajes getLenguaje() { return Lenguaje; } public EjecutaQueryBackRQ setLenguaje(Lenguajes value) { this.Lenguaje = value; return this; } public Integer getRecordSkip() { return RecordSkip; } public EjecutaQueryBackRQ setRecordSkip(Integer value) { this.RecordSkip = value; return this; } public Integer getRecordTake() { return RecordTake; } public EjecutaQueryBackRQ setRecordTake(Integer value) { this.RecordTake = value; return this; } public ArrayList getFilter() { return Filter; } public EjecutaQueryBackRQ setFilter(ArrayList value) { this.Filter = value; return this; } public gridSortOptions getSort() { return Sort; } public EjecutaQueryBackRQ setSort(gridSortOptions value) { this.Sort = value; return this; } public gridGroupOptions getGroup() { return Group; } public EjecutaQueryBackRQ setGroup(gridGroupOptions value) { this.Group = value; return this; } public ArrayList getSummaryGroupItems() { return SummaryGroupItems; } public EjecutaQueryBackRQ setSummaryGroupItems(ArrayList value) { this.SummaryGroupItems = value; return this; } public ArrayList getSummaryTotalItems() { return SummaryTotalItems; } public EjecutaQueryBackRQ setSummaryTotalItems(ArrayList value) { this.SummaryTotalItems = value; return this; } private static Object responseType = EjecutaQueryBackgroundRS.class; public Object getResponseType() { return responseType; } } public static class EjecutaQueryBackgroundRS { public BigDecimal Empresa = null; public BigDecimal Sistema = null; public String Login = null; public Boolean AppAdm = null; public String TxtSQL = null; public String URLArchivo = null; public Boolean Success = null; public String Error = null; public BigDecimal getEmpresa() { return Empresa; } public EjecutaQueryBackgroundRS setEmpresa(BigDecimal value) { this.Empresa = value; return this; } public BigDecimal getSistema() { return Sistema; } public EjecutaQueryBackgroundRS setSistema(BigDecimal value) { this.Sistema = value; return this; } public String getLogin() { return Login; } public EjecutaQueryBackgroundRS setLogin(String value) { this.Login = value; return this; } public Boolean isAppAdm() { return AppAdm; } public EjecutaQueryBackgroundRS setAppAdm(Boolean value) { this.AppAdm = value; return this; } public String getTxtSQL() { return TxtSQL; } public EjecutaQueryBackgroundRS setTxtSQL(String value) { this.TxtSQL = value; return this; } public String getUrlArchivo() { return URLArchivo; } public EjecutaQueryBackgroundRS setUrlArchivo(String value) { this.URLArchivo = value; return this; } public Boolean isSuccess() { return Success; } public EjecutaQueryBackgroundRS setSuccess(Boolean value) { this.Success = value; return this; } public String getError() { return Error; } public EjecutaQueryBackgroundRS setError(String value) { this.Error = value; return this; } } public static enum Lenguajes { Es, Pt, En; } public static class gridSortOptions { public String selector = null; public Boolean desc = null; public String getSelector() { return selector; } public gridSortOptions setSelector(String value) { this.selector = value; return this; } public Boolean isDesc() { return desc; } public gridSortOptions setDesc(Boolean value) { this.desc = value; return this; } } public static class gridGroupOptions { public String selector = null; public Boolean desc = null; public Boolean isExpanded = null; public String getSelector() { return selector; } public gridGroupOptions setSelector(String value) { this.selector = value; return this; } public Boolean isDesc() { return desc; } public gridGroupOptions setDesc(Boolean value) { this.desc = value; return this; } public Boolean getIsExpanded() { return isExpanded; } public gridGroupOptions setIsExpanded(Boolean value) { this.isExpanded = value; return this; } } }