/* Options: Date: 2025-06-07 16:41: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: DefinicionQueryEspacialRQ.* //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/ConsultasEspaciales/Definicion") public static class DefinicionQueryEspacialRQ implements IReturn { public Integer Codigo = null; public Integer getCodigo() { return Codigo; } public DefinicionQueryEspacialRQ setCodigo(Integer value) { this.Codigo = value; return this; } private static Object responseType = DefinicionQueryEspacialRS.class; public Object getResponseType() { return responseType; } } public static class DefinicionQueryEspacialRS { public QueryEspacial Consulta = null; public ArrayList CapasEspaciales = null; public ArrayList CapasBase = null; public ArrayList CentroMapa = null; public Integer Zoom = null; public QueryEspacial getConsulta() { return Consulta; } public DefinicionQueryEspacialRS setConsulta(QueryEspacial value) { this.Consulta = value; return this; } public ArrayList getCapasEspaciales() { return CapasEspaciales; } public DefinicionQueryEspacialRS setCapasEspaciales(ArrayList value) { this.CapasEspaciales = value; return this; } public ArrayList getCapasBase() { return CapasBase; } public DefinicionQueryEspacialRS setCapasBase(ArrayList value) { this.CapasBase = value; return this; } public ArrayList getCentroMapa() { return CentroMapa; } public DefinicionQueryEspacialRS setCentroMapa(ArrayList value) { this.CentroMapa = value; return this; } public Integer getZoom() { return Zoom; } public DefinicionQueryEspacialRS setZoom(Integer value) { this.Zoom = value; return this; } } @DataContract public static class QueryEspacial { @DataMember public Integer Codigo = null; @DataMember public Integer IdSistema = null; @DataMember public Integer IdEmpresa = null; @DataMember public String Nombre = null; @DataMember public String Descripcion = null; @DataMember public Integer IdVista = null; @DataMember public Integer IdConjuntoBase = null; @DataMember public String InfoAdicional = null; public Integer getCodigo() { return Codigo; } public QueryEspacial setCodigo(Integer value) { this.Codigo = value; return this; } public Integer getIdSistema() { return IdSistema; } public QueryEspacial setIdSistema(Integer value) { this.IdSistema = value; return this; } public Integer getIdEmpresa() { return IdEmpresa; } public QueryEspacial setIdEmpresa(Integer value) { this.IdEmpresa = value; return this; } public String getNombre() { return Nombre; } public QueryEspacial setNombre(String value) { this.Nombre = value; return this; } public String getDescripcion() { return Descripcion; } public QueryEspacial setDescripcion(String value) { this.Descripcion = value; return this; } public Integer getIdVista() { return IdVista; } public QueryEspacial setIdVista(Integer value) { this.IdVista = value; return this; } public Integer getIdConjuntoBase() { return IdConjuntoBase; } public QueryEspacial setIdConjuntoBase(Integer value) { this.IdConjuntoBase = value; return this; } public String getInfoAdicional() { return InfoAdicional; } public QueryEspacial setInfoAdicional(String value) { this.InfoAdicional = value; return this; } } @DataContract public static class CapaEspacial { @DataMember public Integer Codigo = null; @DataMember public Integer IdConsulta = null; @DataMember public String Nombre = null; @DataMember public String Descripcion = null; @DataMember public String Tipo = null; @DataMember public Integer IdVista = null; @DataMember public Integer BlobIcono = null; @DataMember public String InfoAdicional = null; @DataMember public byte[] BinarioIcono = null; public Integer getCodigo() { return Codigo; } public CapaEspacial setCodigo(Integer value) { this.Codigo = value; return this; } public Integer getIdConsulta() { return IdConsulta; } public CapaEspacial setIdConsulta(Integer value) { this.IdConsulta = value; return this; } public String getNombre() { return Nombre; } public CapaEspacial setNombre(String value) { this.Nombre = value; return this; } public String getDescripcion() { return Descripcion; } public CapaEspacial setDescripcion(String value) { this.Descripcion = value; return this; } public String getTipo() { return Tipo; } public CapaEspacial setTipo(String value) { this.Tipo = value; return this; } public Integer getIdVista() { return IdVista; } public CapaEspacial setIdVista(Integer value) { this.IdVista = value; return this; } public Integer getBlobIcono() { return BlobIcono; } public CapaEspacial setBlobIcono(Integer value) { this.BlobIcono = value; return this; } public String getInfoAdicional() { return InfoAdicional; } public CapaEspacial setInfoAdicional(String value) { this.InfoAdicional = value; return this; } public byte[] getBinarioIcono() { return BinarioIcono; } public CapaEspacial setBinarioIcono(byte[] value) { this.BinarioIcono = value; return this; } } @DataContract public static class CapaBase { @DataMember public Integer Codigo = null; @DataMember public Integer IdConjuntoBase = null; @DataMember public String Nombre = null; @DataMember public String Descripcion = null; @DataMember public String Url = null; @DataMember public String CapasWms = null; @DataMember public String InfoAdicional = null; public Integer getCodigo() { return Codigo; } public CapaBase setCodigo(Integer value) { this.Codigo = value; return this; } public Integer getIdConjuntoBase() { return IdConjuntoBase; } public CapaBase setIdConjuntoBase(Integer value) { this.IdConjuntoBase = value; return this; } public String getNombre() { return Nombre; } public CapaBase setNombre(String value) { this.Nombre = value; return this; } public String getDescripcion() { return Descripcion; } public CapaBase setDescripcion(String value) { this.Descripcion = value; return this; } public String getUrl() { return Url; } public CapaBase setUrl(String value) { this.Url = value; return this; } public String getCapasWms() { return CapasWms; } public CapaBase setCapasWms(String value) { this.CapasWms = value; return this; } public String getInfoAdicional() { return InfoAdicional; } public CapaBase setInfoAdicional(String value) { this.InfoAdicional = value; return this; } } }