xuhy
2025-03-21 fd6e1e93f65bde3e1c8c15f36b2ff6324d071966
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
@Data
@ApiModel(value = "首页统计DTO")
public class DataScreeningDTO implements Serializable {
 
    @ApiModelProperty(value = "区县id")
    private Integer districtId;
 
    @ApiModelProperty(value = "时间类型 1=本周 2=本月 3=本季度")
    private Integer type;
 
}