zhanghua
2023-03-03 1ded71f8fe1b7ac7746e6ea6e09b7db4a4000340
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package com.ycl.smoke.dto;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Builder;
import lombok.Data;
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;
 
 
}