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.

95 lines
2.1 KiB
Java

This file contains ambiguous Unicode characters!

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.dto;
import com.chenxuan.base.entity.Query;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
/**
* @ClassNameBusiNoiseRealDto
* @Description 噪声实时数据表Dto
* @AuthorJordan_Li
* @CreatTime6/22/2020 - 15:50 PM
* @Version V1.0
*/
@Data
public class BusiNoiseRealDto extends Query implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键id
*/
@ApiModelProperty(name = "id", value = "主键id")
private String id;
/**
* 主变id
*/
@ApiModelProperty(name = "mainId", value = "主变id")
private String mainId;
/**
* 设备名称
*/
@ApiModelProperty(name = "deviceName", value = "设备名称")
private String deviceName;
/**
* 振动频率
*/
@ApiModelProperty(name = "frequency", value = "振动频率")
private String frequency;
/**
* 最大振幅
*/
@ApiModelProperty(name = "maxAmplitude", value = "最大振幅")
private String maxAmplitude;
/**
* 创建时间
*/
@ApiModelProperty(name = "insTime", value = "创建时间")
private String insTime;
/**
* hbase中的rowkey
*/
@ApiModelProperty(name = "hbaseRowkey", value = "hbase中的rowkey")
private String hbaseRowkey;
/**
* 统计时间集合
*/
@ApiModelProperty(name = "gatherTimeList", value = "统计时间集合")
private List<String> gatherTimeList;
/**
* 最大幅值集合
*/
@ApiModelProperty(name = "maxAmplitudeList", value = "最大幅值集合")
private List<String> maxAmplitudeList;
/**
* 统计时间
*/
@ApiModelProperty(name = "createTime", value = "统计时间")
private String createTime;
/**
* 开始时间
*/
@ApiModelProperty(name = "startTime", value = "开始时间")
private String startTime;
/**
* 结束时间
*/
@ApiModelProperty(name = "endTime", value = "结束时间")
private String endTime;
}