package com.iailab.module.device.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @author lirm
|
* @Description
|
* @createTime 2024年05月29日
|
*/
|
@Data
|
@Schema(name = "设备指标")
|
public class DeviceIndexDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
private Integer id;
|
private String deviceId;
|
private String modelId;
|
private String indexNo;
|
private String indexUpperLimit;
|
private String indexLowerLimit;
|
private Integer indexOrder;
|
private Integer dataLength;
|
private String indexType;
|
}
|