yanghui
2022-11-08 5b7f4c27e1769631bf21d71b518c64b41dab3ccd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.panzhihua.common.model.dtos.grid;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("统计模块-网格事件统计请求参数")
public class GridEventStatisticsDTO {
 
    @ApiModelProperty("网格id")
    private Long gridId;
 
    @ApiModelProperty("查询开始时间")
    private String startTime;
 
    @ApiModelProperty("查询结束时间")
    private String endTime;
}