1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.whyc.dto.paramter;
|
| import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
| import lombok.Data;
|
| import java.util.Date;
|
| @Data
| @JsonIgnoreProperties(ignoreUnknown = true)
| public class PwrdevReportParam {
| private Date startTime;
| private Date endTime;
| private String type;
| private String powerDeviceId;
| private String val;
| private String dataType;
| }
|
|