You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.chenxuan.entity.vo ;
import com.chenxuan.base.entity.Query ;
import io.swagger.annotations.ApiModelProperty ;
import lombok.Data ;
import java.io.Serializable ;
/**
* @author buck_guo
*/
@Data
public class BusiIedparamVo extends Query implements Serializable {
/**
* 振动传感器
*/
@ApiModelProperty ( value = "振动传感器" , name = "nodeId" )
private String nodeId ;
/**
* 振动分量
*/
@ApiModelProperty ( value = "振动分量" , name = "nodeName" )
private String nodeName ;
/**
* 振动类型
*/
@ApiModelProperty ( value = "振动类型" , name = "nodeType" )
private String nodeType ;
/**
* 装置类别: 1振动装置, 2噪声装置,3中心点装置
*/
@ApiModelProperty ( value = "装置类别: 1振动装置, 2噪声装置,3中心点装置" , name = "deviceType" )
private String deviceType ;
}