101captain
2021-10-15 0d368fee20b005cf12c2feb35780c69c2c75cdda
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;
}