manailin
2021-11-11 31b8c6fc8c13f6a6e04362801eec0fce85af7366
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;
}