罗元桥
2021-06-22 c6512655e722d9ca80dd8c34b79f6d3923ecf86c
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;
}