fix
Hentua
2023-04-25 742452d530eb37c1990996a5d625a3fb56d2b59c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package cc.mrbird.febs.mall.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author wzy
 * @date 2023-04-20
 **/
@Data
@ApiModel(value = "ApiShopDto", description = "接收参数类s")
public class ApiShopDto {
 
    @ApiModelProperty(value = "一页数量", example = "10")
    private Integer pageSize;
 
    @ApiModelProperty(value = "第几页", example = "1")
    private Integer pageNum;
 
    @ApiModelProperty(value = "经度")
    private BigDecimal longitude;
 
    @ApiModelProperty(value = "纬度")
    private BigDecimal latitude;
}