package com.ruoyi.alarmpoints.well.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; /** * 井关联引导相机对象 ard_well_guide_camera * * @author ard * @date 2024-01-15 */ public class ArdWellGuideCamera extends BaseEntity { private static final long serialVersionUID = 1L; /** 主键 */ private String id; /** 相机ID */ @Excel(name = "相机ID") private String cameraId; /** 可见光p值 */ @Excel(name = "可见光p值") private Double p1; /** 可见光t值 */ @Excel(name = "可见光t值") private Double t1; /** 可见光z值 */ @Excel(name = "可见光z值") private Double z1; /** 热红外p值 */ @Excel(name = "热红外p值") private Double p2; /** 热红外t值 */ @Excel(name = "热红外t值") private Double t2; /** 热红外z值 */ @Excel(name = "热红外z值") private Double z2; /** 井ID */ @Excel(name = "井ID") private String wellId; public void setId(String id) { this.id = id; } public String getId() { return id; } public void setCameraId(String cameraId) { this.cameraId = cameraId; } public String getCameraId() { return cameraId; } public void setP1(Double p1) { this.p1 = p1; } public Double getP1() { return p1; } public void setT1(Double t1) { this.t1 = t1; } public Double getT1() { return t1; } public void setZ1(Double z1) { this.z1 = z1; } public Double getZ1() { return z1; } public void setP2(Double p2) { this.p2 = p2; } public Double getP2() { return p2; } public void setT2(Double t2) { this.t2 = t2; } public Double getT2() { return t2; } public void setZ2(Double z2) { this.z2 = z2; } public Double getZ2() { return z2; } public void setWellId(String wellId) { this.wellId = wellId; } public String getWellId() { return wellId; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("id", getId()) .append("cameraId", getCameraId()) .append("p1", getP1()) .append("t1", getT1()) .append("z1", getZ1()) .append("p2", getP2()) .append("t2", getT2()) .append("z2", getZ2()) .append("wellId", getWellId()) .toString(); } }