mitao
2025-05-06 0135fa289418c5fd231fa4e7c60ee7b8f06f17a7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.panzhihua.sangeshenbian.model.query;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("数据统计数据传输对象")
public class AnalyticStatisticsQuery {
    @ApiModelProperty("城市编码")
    private Integer cityCode;
    @ApiModelProperty("区县编码")
    private Integer districtCode;
    @ApiModelProperty("街道id")
    private Long streetId;
    @ApiModelProperty("社区id")
    private Long communityId;
    @ApiModelProperty("2022-02-02 - 2023-02-02")
    private String time;
    @ApiModelProperty("5  10  不传是所有")
    private Integer rank;
}