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.

41 lines
1.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.vo;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.io.Serializable;
@Data
public class BusiModbusTemplateVo implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键id
*/
@ApiModelProperty(name = "id", value = "主键id")
private String id;
/**
* 寄存器地址
*/
@ApiModelProperty(value = "寄存器地址", name = "addr")
private int addr;
/**
* 寄存器类型
*/
@ApiModelProperty(value = "寄存器类型, EX: 自检量 ST:状态量YX; MX:模拟量YC; SE:控制量; TM:时钟", name = "addrType")
private String addrType;
/**
* 寄存器描述
*/
@ApiModelProperty(value = "寄存器描述", name = "adrdesc")
private String adrdesc;
/**
* 装置类型1振动装置2噪声装置,3中心点装置,4其他
*/
@ApiModelProperty(value = "装置类型1振动装置2噪声装置,3中心点装置,4其他", name = "deviceType")
private String deviceType;
}