New file |
| | |
| | | package com.ruoyi.account.vo; |
| | | |
| | | import com.ruoyi.common.core.web.page.BasePage; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/11/25 10:36 |
| | | */ |
| | | @Data |
| | | @ApiModel |
| | | public class NearbyReferrer extends BasePage { |
| | | @ApiModelProperty(value = "经度", required = true) |
| | | private String longitude; |
| | | @ApiModelProperty(value = "纬度", required = true) |
| | | private String latitude; |
| | | @ApiModelProperty(value = "搜索内容", required = false) |
| | | private String name; |
| | | |
| | | } |