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.

38 lines
884 B
Java

1 year ago
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;
/**
* : 12,3
*/
@ApiModelProperty(value="装置类别: 1振动装置2噪声装置,3中心点装置", name="deviceType")
private String deviceType;
1 year ago
}