package com.ruoyi.fuzhou.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import io.swagger.v3.oas.annotations.media.Schema; import java.io.Serializable; /** *

* 数据接收信息 *

* * @author zhangyy * @since 2025-03-10 */ @TableName("RECEIVE_INFO") @Schema(description = "数据接收信息") public class ReceiveInfo implements Serializable { @Schema(title = "主键") @TableId(value = "ID", type = IdType.ASSIGN_ID) private Long id; @Schema(title = "数据内容") @TableField("CONTENT") private String content; @Schema(title = "协议") @TableField("PROTOCOL") private String protocol; @Schema(title = "设备名称") @TableField("DEVICE_NAME") private String deviceName; @Schema(title = "设备类型") @TableField("DEVICT_TYPE") private Integer deviceType; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public String getDeviceName() { return deviceName; } public void setDeviceName(String deviceName) { this.deviceName = deviceName; } public Integer getDeviceType() { return deviceType; } public void setDeviceType(Integer deviceType) { this.deviceType = deviceType; } }