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;//分页
|
|
}
|