package cn.stylefeng.guns.modular.bs.collectionParamConf.entity;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import java.util.Date;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.FieldFill;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import java.io.Serializable;
|
|
/**
|
* <p>
|
* 采集参数配置
|
* </p>
|
*
|
* @author zrm
|
* @since 2023-02-11
|
*/
|
@TableName("bs_collection_param_conf")
|
public class CollectionParamConf implements Serializable {
|
|
private static final long serialVersionUID=1L;
|
|
/**
|
* 主键id
|
*/
|
@TableId(value = "id", type = IdType.ID_WORKER)
|
private Long id;
|
|
/**
|
* 参数编码
|
*/
|
@TableField("param_code")
|
private String paramCode;
|
|
/**
|
* 参数编码
|
*/
|
@TableField("param_name")
|
private String paramName;
|
|
/**
|
* 产线编号
|
*/
|
@TableField("production_line")
|
private String productionLine;
|
|
/**
|
* 工位编号
|
*/
|
@TableField("location_code")
|
private String locationCode;
|
|
/**
|
* 设备编号
|
*/
|
@TableField("equipment_no")
|
private String equipmentNo;
|
|
/**
|
* 产品编码
|
*/
|
@TableField("product_code")
|
private String productCode;
|
|
/**
|
* 采集地址
|
*/
|
@TableField("gather_address")
|
private String gatherAddress;
|
|
/**
|
* 采集顺序
|
*/
|
@TableField("gather_sequence")
|
private String gatherSequence;
|
|
/**
|
* 数据类型
|
*/
|
@TableField("data_type")
|
private String dataType;
|
|
/**
|
* 单位
|
*/
|
@TableField("unit")
|
private String unit;
|
|
/**
|
* 上限值
|
*/
|
@TableField("param_upper")
|
private String paramUpper;
|
|
/**
|
* 下限值
|
*/
|
@TableField("param_lower")
|
private String paramLower;
|
|
/**
|
* 中心值
|
*/
|
@TableField("param_Central")
|
private String paramCentral;
|
|
/**
|
* 预留字段1
|
*/
|
@TableField("spare_field_1")
|
private String spareField1;
|
|
/**
|
* 预留字段2
|
*/
|
@TableField("spare_field_2")
|
private String spareField2;
|
|
/**
|
* 备注
|
*/
|
@TableField("remarks")
|
private String remarks;
|
|
/**
|
* 创建用户
|
*/
|
@TableField(value = "create_user", fill = FieldFill.INSERT)
|
private String createUser;
|
|
/**
|
* 创建时间
|
*/
|
@TableField(value = "create_time", fill = FieldFill.INSERT)
|
private Date createTime;
|
|
/**
|
* 更改用户
|
*/
|
@TableField(value = "update_user", fill = FieldFill.UPDATE)
|
private String updateUser;
|
|
/**
|
* 更改时间
|
*/
|
@TableField(value = "update_time", fill = FieldFill.UPDATE)
|
private Date updateTime;
|
|
public String getParamName() {
|
return paramName;
|
}
|
|
public void setParamName(String paramName) {
|
this.paramName = paramName;
|
}
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getParamCode() {
|
return paramCode;
|
}
|
|
public void setParamCode(String paramCode) {
|
this.paramCode = paramCode;
|
}
|
|
public String getProductionLine() {
|
return productionLine;
|
}
|
|
public void setProductionLine(String productionLine) {
|
this.productionLine = productionLine;
|
}
|
|
public String getLocationCode() {
|
return locationCode;
|
}
|
|
public void setLocationCode(String locationCode) {
|
this.locationCode = locationCode;
|
}
|
|
public String getEquipmentNo() {
|
return equipmentNo;
|
}
|
|
public void setEquipmentNo(String equipmentNo) {
|
this.equipmentNo = equipmentNo;
|
}
|
|
public String getDataType() {
|
return dataType;
|
}
|
|
public void setDataType(String dataType) {
|
this.dataType = dataType;
|
}
|
|
public String getUnit() {
|
return unit;
|
}
|
|
public void setUnit(String unit) {
|
this.unit = unit;
|
}
|
|
public String getParamUpper() {
|
return paramUpper;
|
}
|
|
public void setParamUpper(String paramUpper) {
|
this.paramUpper = paramUpper;
|
}
|
|
public String getParamLower() {
|
return paramLower;
|
}
|
|
public void setParamLower(String paramLower) {
|
this.paramLower = paramLower;
|
}
|
|
public String getParamCentral() {
|
return paramCentral;
|
}
|
|
public void setParamCentral(String paramCentral) {
|
this.paramCentral = paramCentral;
|
}
|
|
public String getSpareField1() {
|
return spareField1;
|
}
|
|
public void setSpareField1(String spareField1) {
|
this.spareField1 = spareField1;
|
}
|
|
public String getSpareField2() {
|
return spareField2;
|
}
|
|
public void setSpareField2(String spareField2) {
|
this.spareField2 = spareField2;
|
}
|
|
public String getRemarks() {
|
return remarks;
|
}
|
|
public void setRemarks(String remarks) {
|
this.remarks = remarks;
|
}
|
|
public String getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(String createUser) {
|
this.createUser = createUser;
|
}
|
|
public Date getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Date createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(String updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Date getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Date updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
public String getProductCode() {
|
return productCode;
|
}
|
|
public void setProductCode(String productCode) {
|
this.productCode = productCode;
|
}
|
|
public String getGatherAddress() {
|
return gatherAddress;
|
}
|
|
public void setGatherAddress(String gatherAddress) {
|
this.gatherAddress = gatherAddress;
|
}
|
|
public String getGatherSequence() {
|
return gatherSequence;
|
}
|
|
public void setGatherSequence(String gatherSequence) {
|
this.gatherSequence = gatherSequence;
|
}
|
|
@Override
|
public String toString() {
|
return "CollectionParamConf{" +
|
"id=" + id +
|
", paramCode=" + paramCode +
|
", productionLine=" + productionLine +
|
", locationCode=" + locationCode +
|
", equipmentNo=" + equipmentNo +
|
", dataType=" + dataType +
|
", unit=" + unit +
|
", paramUpper=" + paramUpper +
|
", paramLower=" + paramLower +
|
", paramCentral=" + paramCentral +
|
", spareField1=" + spareField1 +
|
", spareField2=" + spareField2 +
|
", remarks=" + remarks +
|
", createUser=" + createUser +
|
", createTime=" + createTime +
|
", updateUser=" + updateUser +
|
", updateTime=" + updateTime +
|
"}";
|
}
|
}
|