101captain
2022-03-02 ccff69c44c520fb70ce7e1316a7de8cecaadafd3
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;
}