package com.billion.main.sc.domain; import com.billion.common.annotation.Excel; import com.billion.main.common.BaseEntity; import lombok.Data; /** * 参数采集配置对象 sc_collection_param_conf * * @author HDY * @date 2024-11-21 */ @Data public class ScCollectionParamConf extends BaseEntity { private static final long serialVersionUID = 1L; /** 主键id */ private Long id; /** 产品编码 */ @Excel(name = "产品编码") private String productCode; /** 产品型号 */ @Excel(name = "产品型号") private String productType; /** 工位编码 */ @Excel(name = "工位编码") private String locationCode; /** 参数编码 */ @Excel(name = "参数编码") private String paramCode; /** 参数名称 */ @Excel(name = "参数名称") private String paramName; /** 参数集编码 */ @Excel(name = "参数集编码") private String paramSetCode; /** 参数集名称 */ @Excel(name = "参数集名称") private String paramSetName; /** 采集地址 */ @Excel(name = "采集地址") private String node; /** 采集类型(1物料追溯,2拧紧追溯,其他) */ @Excel(name = "采集类型", readConverterExp = "1=物料追溯,2拧紧追溯,其他") private String type; /** 单位 */ @Excel(name = "单位") private String unit; /** 上限值 */ @Excel(name = "上限值") private String paramUpper; /** 下限值 */ @Excel(name = "下限值") private String paramLower; /** 中心值 */ @Excel(name = "中心值") private String paramCentral; /** 显示顺序 */ @Excel(name = "显示顺序") private Integer orderNum; /** 是否订阅 */ @Excel(name = "是否订阅") private String subscribe; /** 删除标志(0代表存在 1代表删除) */ private String delFlag; }