MapParams.java 637 B

123456789101112131415161718192021222324
  1. package jnpf.base.model.province;
  2. import io.swagger.v3.oas.annotations.media.Schema;
  3. import lombok.Data;
  4. @Data
  5. public class MapParams {
  6. @Schema(description = "key")
  7. private String key;
  8. @Schema(description = "location")
  9. private String location;
  10. @Schema(description = "keywords")
  11. private String keywords;
  12. @Schema(description = "radius")
  13. private String radius;
  14. @Schema(description = "offset")
  15. private Integer offset;
  16. @Schema(description = "page")
  17. private Integer page;
  18. @Schema(description = "zoom")
  19. private Integer zoom;
  20. @Schema(description = "size")
  21. private String size;
  22. }