package com.sandu.ximon.admin.param;
|
|
import lombok.Data;
|
import javax.validation.constraints.NotEmpty;
|
|
/**
|
* 灯杆倾斜警告处理
|
*
|
* @author ZZQ
|
* @date 2022/3/22 15:18
|
*/
|
|
@Data
|
public class LightPoleHeelingProcessingParam {
|
|
@NotEmpty(message = "灯杆倾斜硬件地址不能为空")
|
private String deviceName = "";
|
|
/**
|
* 警告号
|
*/
|
private Long warningNumber;
|
|
/**
|
* 处理后状态
|
*/
|
private Integer processingState;
|
|
/**
|
* 处理意见
|
*/
|
private String processingOpinion;
|
|
/**
|
* 处理人
|
*/
|
private String processingPerson;
|
|
/**
|
* 处理后X轴
|
*/
|
private Double theXAxis;
|
|
/**
|
* 处理后Y轴
|
*/
|
private Double theYAxis;
|
|
/**
|
* 处理后Z轴
|
*/
|
private Double theZAxis;
|
|
|
}
|