package com.iailab.module.data.channel.opcda.dto;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* @description: opcda_tag
|
* @author: dzd
|
* @date: 2024/7/12 11:00
|
**/
|
@Schema(description = "OPC DA TAG")
|
@Data
|
public class ChannelOPCDATagDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
@Schema(description = "主键", example = "主键")
|
private String id;
|
|
@Schema(description = "服务id", example = "服务id")
|
private String serverId;
|
|
@Schema(description = "TagName", example = "TagName")
|
private String tagName;
|
|
@Schema(description = "数据类型", example = "数据类型")
|
private String dataType;
|
|
@Schema(description = "是否可以tag", example = "是否可以tag")
|
private Boolean enabled;
|
|
@Schema(description = "itemId", example = "itemId")
|
private String itemId;
|
|
@Schema(description = "创建时间", example = "创建时间")
|
private Date createTime;
|
|
@Schema(description = "修改时间", example = "修改时间")
|
private Date updateTime;
|
|
}
|