whyclxw
2021-10-18 ba1b39b4acc0b89fad9ce9f3bfb475d35ea047cb
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
package com.whyc.dto.paramter;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.whyc.dto.Page;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.ToString;
 
import java.io.Serializable;
import java.util.Date;
 
@Data
@AllArgsConstructor
@NoArgsConstructor
@ToString
public class AlarmPar implements Serializable {
    private int almIdOne;//almid参数1
    private int almIdTwo;//almid参数2
    private int almIdThree;//almid参数3
    private int almIdFour;//almid参数4
    private int almIdFive;//almid参数5
    private int almIdSix;//almid参数6
    private int almSignalIdOne;//almSignalId参数1
    private int almSignalIdTwo;//almSignalId参数2
    private int almLevelOne;//almLevel参数1
    private int almLevelTwo;//almLevel参数2
    private int almLevelThree;//almLevel参数3
    private int almLevelFour;//almLevel参数4
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date almStartTime;//开始时间
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date almStartTime1;//开始时间1
    private String stationname;//机房名称(全称)
    private String stationname1;//省
    private int battGroupId;//电池组id
    private int almIsConfirmed;//是否确认
    private int uId;//用户id
    private int almClearedType;//实时还是历史 0实时
 
    private Page page;//分页
 
}