File was renamed from ycl-smoke/src/main/java/com/ycl/smoke/remote/dto/DataIntimeParamDto.java |
| | |
| | | package com.ycl.smoke.remote.dto; |
| | | package com.ycl.smoke.dto; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | @Data |
| | | @Builder |
| | | @EqualsAndHashCode(callSuper = false) |
| | | public class DataIntimeParamDto { |
| | | /** |
| | | * 否 起始位置 |
| | | */ |
| | | @JsonProperty("StartAt") |
| | | private Integer StartAt; |
| | | |
| | | /** |
| | | * 是 请求数量 |
| | | */ |
| | | @JsonProperty("Size") |
| | | private Integer Size; |
| | | /** |
| | | * 是 1:监控设备2:监测设备 |
| | | */ |
| | | @JsonProperty("Typ") |
| | | private Integer Typ; |
| | | /** |
| | | * 否 排序依据 |
| | | */ |
| | | @JsonProperty("SortBy") |
| | | private String SortBy; |
| | | /** |
| | | * 是 升序/降序 |
| | | */ |
| | | @JsonProperty("SortMode") |
| | | private String SortMode; |
| | | /** |
| | | * 否 |
| | | */ |
| | | @JsonProperty("Param") |
| | | private DataIntimeParamChildDto Param; |
| | | |
| | | |