package com.jcdm.main.da.collectionParamConf.domain;
|
|
import com.jcdm.common.annotation.Excel;
|
import com.jcdm.common.core.domain.BaseEntity;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
/**
|
* 采集参数配置对象 da_collection_param_conf
|
*
|
* @author ruimin
|
* @date 2023-12-25
|
*/
|
@Data
|
public class DaCollectionParamConf extends BaseEntity
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** 主键id */
|
private Long id;
|
|
private Integer keyNum;
|
|
/** 工序编号 */
|
@Excel(name = "工序编号")
|
private String processesCode;
|
|
/** 参数集编码 */
|
@Excel(name = "参数集编码")
|
private String parameterSetCode;
|
|
/** 参数集名称 */
|
@Excel(name = "参数集名称")
|
private String parameterSetName;
|
|
/** 采集参数ID */
|
@Excel(name = "采集参数ID")
|
private String collectParameterId;
|
|
/** 采集参数名称 */
|
@Excel(name = "采集参数名称")
|
private String collectParameterName;
|
|
/** 是否作为对比参数 */
|
@Excel(name = "是否作为对比参数")
|
private String contrastParameterFlag;
|
|
/** 采集参数类型 */
|
@Excel(name = "采集参数类型")
|
private String collectParameterType;
|
|
/** 采集参数单位 */
|
@Excel(name = "采集参数单位")
|
private String collectParameterUnit;
|
|
/** 数据描述 */
|
@Excel(name = "数据描述")
|
private String descriptives;
|
|
/** 上限值 */
|
@Excel(name = "上限值")
|
private String paramUpper;
|
|
/** 下限值 */
|
@Excel(name = "下限值")
|
private String paramLower;
|
|
/** 中心值 */
|
@Excel(name = "中心值")
|
private String paramCentral;
|
|
/** 产品编码 */
|
@Excel(name = "产品编码")
|
private String productCode;
|
|
/** 采集地址 */
|
@Excel(name = "采集地址")
|
private String gatherAddress;
|
|
/** 采集顺序 */
|
@Excel(name = "采集顺序")
|
private String gatherSequence;
|
|
/** 备注 */
|
@Excel(name = "备注")
|
private String remarks;
|
|
/** 创建用户 */
|
@Excel(name = "创建用户")
|
private String createUser;
|
|
/** 更改用户 */
|
@Excel(name = "更改用户")
|
private String updateUser;
|
|
/** 预留字段1 */
|
private String spareField1;
|
|
/** 预留字段2 */
|
private String spareField2;
|
|
/** 预留字段3 */
|
private String spareField3;
|
|
/** 预留字段4 */
|
private String spareField4;
|
|
/** 工序名称 */
|
@Excel(name = "工序名称")
|
private String processesName;
|
|
/** 设备 */
|
@Excel(name = "设备")
|
private String device;
|
|
/** 项目 */
|
@Excel(name = "项目")
|
private String project;
|
|
/** 精度 */
|
@Excel(name = "精度")
|
private Long accuracy;
|
|
/** 数组长度 */
|
@Excel(name = "数组长度")
|
private Long arrayLength;
|
|
/** 采集频率 */
|
@Excel(name = "采集频率")
|
private String acquisitionFrequency;
|
|
/** 业务需求部门 */
|
@Excel(name = "业务需求部门")
|
private String demandDepartment;
|
|
/** 是否采集 */
|
@Excel(name = "是否采集")
|
private String whetherToCollect;
|
|
/** 默认值 */
|
@Excel(name = "默认值")
|
private String defaultValue;
|
|
/** 产品型号 */
|
@Excel(name = "产品型号")
|
private String productModel;
|
|
private String itemType;
|
|
|
public String getProductModel() {
|
return productModel;
|
}
|
|
public void setProductModel(String productModel) {
|
this.productModel = productModel;
|
}
|
|
public String getProcessesName() {
|
return processesName;
|
}
|
|
public void setProcessesName(String processesName) {
|
this.processesName = processesName;
|
}
|
|
public String getDevice() {
|
return device;
|
}
|
|
public void setDevice(String device) {
|
this.device = device;
|
}
|
|
public String getProject() {
|
return project;
|
}
|
|
public void setProject(String project) {
|
this.project = project;
|
}
|
|
public Long getAccuracy() {
|
return accuracy;
|
}
|
|
public void setAccuracy(Long accuracy) {
|
this.accuracy = accuracy;
|
}
|
|
public Long getArrayLength() {
|
return arrayLength;
|
}
|
|
public void setArrayLength(Long arrayLength) {
|
this.arrayLength = arrayLength;
|
}
|
|
public String getAcquisitionFrequency() {
|
return acquisitionFrequency;
|
}
|
|
public void setAcquisitionFrequency(String acquisitionFrequency) {
|
this.acquisitionFrequency = acquisitionFrequency;
|
}
|
|
public String getDemandDepartment() {
|
return demandDepartment;
|
}
|
|
public void setDemandDepartment(String demandDepartment) {
|
this.demandDepartment = demandDepartment;
|
}
|
|
public String getWhetherToCollect() {
|
return whetherToCollect;
|
}
|
|
public void setWhetherToCollect(String whetherToCollect) {
|
this.whetherToCollect = whetherToCollect;
|
}
|
|
public String getDefaultValue() {
|
return defaultValue;
|
}
|
|
public void setDefaultValue(String defaultValue) {
|
this.defaultValue = defaultValue;
|
}
|
|
public void setId(Long id)
|
{
|
this.id = id;
|
}
|
|
public Long getId()
|
{
|
return id;
|
}
|
public void setProcessesCode(String processesCode)
|
{
|
this.processesCode = processesCode;
|
}
|
|
public String getProcessesCode()
|
{
|
return processesCode;
|
}
|
public void setParameterSetCode(String parameterSetCode)
|
{
|
this.parameterSetCode = parameterSetCode;
|
}
|
|
public String getParameterSetCode()
|
{
|
return parameterSetCode;
|
}
|
public void setParameterSetName(String parameterSetName)
|
{
|
this.parameterSetName = parameterSetName;
|
}
|
|
public String getParameterSetName()
|
{
|
return parameterSetName;
|
}
|
public void setCollectParameterId(String collectParameterId)
|
{
|
this.collectParameterId = collectParameterId;
|
}
|
|
public String getCollectParameterId()
|
{
|
return collectParameterId;
|
}
|
public void setCollectParameterName(String collectParameterName)
|
{
|
this.collectParameterName = collectParameterName;
|
}
|
|
public String getCollectParameterName()
|
{
|
return collectParameterName;
|
}
|
public void setContrastParameterFlag(String contrastParameterFlag)
|
{
|
this.contrastParameterFlag = contrastParameterFlag;
|
}
|
|
public String getContrastParameterFlag()
|
{
|
return contrastParameterFlag;
|
}
|
public void setCollectParameterType(String collectParameterType)
|
{
|
this.collectParameterType = collectParameterType;
|
}
|
|
public String getCollectParameterType()
|
{
|
return collectParameterType;
|
}
|
public void setCollectParameterUnit(String collectParameterUnit)
|
{
|
this.collectParameterUnit = collectParameterUnit;
|
}
|
|
public String getCollectParameterUnit()
|
{
|
return collectParameterUnit;
|
}
|
public void setDescriptives(String descriptives)
|
{
|
this.descriptives = descriptives;
|
}
|
|
public String getDescriptives()
|
{
|
return descriptives;
|
}
|
public void setParamUpper(String paramUpper)
|
{
|
this.paramUpper = paramUpper;
|
}
|
|
public String getParamUpper()
|
{
|
return paramUpper;
|
}
|
public void setParamLower(String paramLower)
|
{
|
this.paramLower = paramLower;
|
}
|
|
public String getParamLower()
|
{
|
return paramLower;
|
}
|
public void setParamCentral(String paramCentral)
|
{
|
this.paramCentral = paramCentral;
|
}
|
|
public String getParamCentral()
|
{
|
return paramCentral;
|
}
|
public void setProductCode(String productCode)
|
{
|
this.productCode = productCode;
|
}
|
|
public String getProductCode()
|
{
|
return productCode;
|
}
|
public void setGatherAddress(String gatherAddress)
|
{
|
this.gatherAddress = gatherAddress;
|
}
|
|
public String getGatherAddress()
|
{
|
return gatherAddress;
|
}
|
public void setGatherSequence(String gatherSequence)
|
{
|
this.gatherSequence = gatherSequence;
|
}
|
|
public String getGatherSequence()
|
{
|
return gatherSequence;
|
}
|
public void setRemarks(String remarks)
|
{
|
this.remarks = remarks;
|
}
|
|
public String getRemarks()
|
{
|
return remarks;
|
}
|
public void setCreateUser(String createUser)
|
{
|
this.createUser = createUser;
|
}
|
|
public String getCreateUser()
|
{
|
return createUser;
|
}
|
public void setUpdateUser(String updateUser)
|
{
|
this.updateUser = updateUser;
|
}
|
|
public String getUpdateUser()
|
{
|
return updateUser;
|
}
|
public void setSpareField1(String spareField1)
|
{
|
this.spareField1 = spareField1;
|
}
|
|
public String getSpareField1()
|
{
|
return spareField1;
|
}
|
public void setSpareField2(String spareField2)
|
{
|
this.spareField2 = spareField2;
|
}
|
|
public String getSpareField2()
|
{
|
return spareField2;
|
}
|
public void setSpareField3(String spareField3)
|
{
|
this.spareField3 = spareField3;
|
}
|
|
public String getSpareField3()
|
{
|
return spareField3;
|
}
|
public void setSpareField4(String spareField4)
|
{
|
this.spareField4 = spareField4;
|
}
|
|
public String getSpareField4()
|
{
|
return spareField4;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("processesCode", getProcessesCode())
|
.append("parameterSetCode", getParameterSetCode())
|
.append("parameterSetName", getParameterSetName())
|
.append("collectParameterId", getCollectParameterId())
|
.append("collectParameterName", getCollectParameterName())
|
.append("contrastParameterFlag", getContrastParameterFlag())
|
.append("collectParameterType", getCollectParameterType())
|
.append("collectParameterUnit", getCollectParameterUnit())
|
.append("descriptives", getDescriptives())
|
.append("paramUpper", getParamUpper())
|
.append("paramLower", getParamLower())
|
.append("paramCentral", getParamCentral())
|
.append("productCode", getProductCode())
|
.append("gatherAddress", getGatherAddress())
|
.append("gatherSequence", getGatherSequence())
|
.append("remarks", getRemarks())
|
.append("createUser", getCreateUser())
|
.append("createTime", getCreateTime())
|
.append("updateUser", getUpdateUser())
|
.append("updateTime", getUpdateTime())
|
.append("spareField1", getSpareField1())
|
.append("spareField2", getSpareField2())
|
.append("spareField3", getSpareField3())
|
.append("spareField4", getSpareField4())
|
.toString();
|
}
|
}
|