package com.billion.main.sc.domain; import com.billion.common.annotation.Excel; import com.billion.main.common.BaseEntity; import lombok.Data; /** * OPC交互配置对象 sc_opc_conf * * @author HDY * @date 2024-11-20 */ @Data public class ScOpcConf extends BaseEntity { private static final long serialVersionUID = 1L; /** 主键id */ private Long id; /** 工位编码 */ @Excel(name = "工位编码") private String locationCode; /** 工位名称 */ @Excel(name = "工位名称") private String locationName; /** 地址 */ @Excel(name = "地址") private String node; /** 采集类型 */ @Excel(name = "采集类型") private String type; /** 是否订阅 */ @Excel(name = "是否订阅") private String subscribe; /** 删除标志(0代表存在 1代表删除) */ private String delFlag; }