|
|
|
@ -54,6 +54,11 @@ public class PatrolData implements Comparable<PatrolData> { |
|
|
|
name = "分析图片" |
|
|
|
) |
|
|
|
private String imgAnalyse; |
|
|
|
|
|
|
|
@Excel( |
|
|
|
name = "光明大模型分析图片" |
|
|
|
) |
|
|
|
private String brightImgAnalyse; |
|
|
|
@Excel( |
|
|
|
name = "分析结果" |
|
|
|
) |
|
|
|
@ -169,6 +174,10 @@ public class PatrolData implements Comparable<PatrolData> { |
|
|
|
return this.imgAnalyse; |
|
|
|
} |
|
|
|
|
|
|
|
public String getBrightImgAnalyse() { |
|
|
|
return this.brightImgAnalyse; |
|
|
|
} |
|
|
|
|
|
|
|
public String getDesc() { |
|
|
|
return this.desc; |
|
|
|
} |
|
|
|
@ -273,6 +282,9 @@ public class PatrolData implements Comparable<PatrolData> { |
|
|
|
public void setImgAnalyse(String imgAnalyse) { |
|
|
|
this.imgAnalyse = imgAnalyse; |
|
|
|
} |
|
|
|
public void setBrightImgAnalyse(String brightImgAnalyse) { |
|
|
|
this.brightImgAnalyse = brightImgAnalyse; |
|
|
|
} |
|
|
|
|
|
|
|
public void setDesc(String desc) { |
|
|
|
this.desc = desc; |
|
|
|
@ -345,12 +357,12 @@ public class PatrolData implements Comparable<PatrolData> { |
|
|
|
if (this == object) return true; |
|
|
|
if (object == null || getClass() != object.getClass()) return false; |
|
|
|
PatrolData that = (PatrolData) object; |
|
|
|
return Objects.equals(deviceName, that.deviceName) && Objects.equals(channelName, that.channelName) && Objects.equals(deviceSource, that.deviceSource) && Objects.equals(pointName, that.pointName) && Objects.equals(pointId, that.pointId) && Objects.equals(warnStatus, that.warnStatus) && Objects.equals(algName, that.algName) && Objects.equals(resValue, that.resValue) && Objects.equals(img, that.img) && Objects.equals(filterDesc, that.filterDesc) && Objects.equals(brightDesc, that.brightDesc) && Objects.equals(imgAnalyse, that.imgAnalyse) && Objects.equals(desc, that.desc) && Objects.equals(lineId, that.lineId) && Objects.equals(patrolTime, that.patrolTime) && Objects.equals(pointStatus, that.pointStatus) && Objects.equals(imgType, that.imgType) && Objects.equals(dataType, that.dataType) && Objects.equals(filter, that.filter) && Objects.equals(requestId, that.requestId) && Objects.equals(resStatus, that.resStatus) && Objects.equals(brightResStatus, that.brightResStatus) && Objects.equals(areaName, that.areaName) && Objects.equals(algType, that.algType) && Objects.equals(objectId, that.objectId) && Objects.equals(imageNormalUrlPath, that.imageNormalUrlPath) && Objects.equals(suggestion, that.suggestion); |
|
|
|
return Objects.equals(deviceName, that.deviceName) && Objects.equals(channelName, that.channelName) && Objects.equals(deviceSource, that.deviceSource) && Objects.equals(pointName, that.pointName) && Objects.equals(pointId, that.pointId) && Objects.equals(warnStatus, that.warnStatus) && Objects.equals(algName, that.algName) && Objects.equals(resValue, that.resValue) && Objects.equals(img, that.img) && Objects.equals(filterDesc, that.filterDesc) && Objects.equals(brightDesc, that.brightDesc) && Objects.equals(imgAnalyse, that.imgAnalyse) && Objects.equals(brightImgAnalyse, that.brightImgAnalyse) && Objects.equals(desc, that.desc) && Objects.equals(lineId, that.lineId) && Objects.equals(patrolTime, that.patrolTime) && Objects.equals(pointStatus, that.pointStatus) && Objects.equals(imgType, that.imgType) && Objects.equals(dataType, that.dataType) && Objects.equals(filter, that.filter) && Objects.equals(requestId, that.requestId) && Objects.equals(resStatus, that.resStatus) && Objects.equals(brightResStatus, that.brightResStatus) && Objects.equals(areaName, that.areaName) && Objects.equals(algType, that.algType) && Objects.equals(objectId, that.objectId) && Objects.equals(imageNormalUrlPath, that.imageNormalUrlPath) && Objects.equals(suggestion, that.suggestion); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public int hashCode() { |
|
|
|
return Objects.hash(deviceName, channelName, deviceSource, pointName, pointId, warnStatus, algName, resValue, img, filterDesc, brightDesc, imgAnalyse, desc, lineId, patrolTime, pointStatus, imgType, dataType, filter, requestId, resStatus, brightResStatus, areaName, algType, objectId, imageNormalUrlPath, suggestion); |
|
|
|
return Objects.hash(deviceName, channelName, deviceSource, pointName, pointId, warnStatus, algName, resValue, img, filterDesc, brightDesc, imgAnalyse, brightImgAnalyse, desc, lineId, patrolTime, pointStatus, imgType, dataType, filter, requestId, resStatus, brightResStatus, areaName, algType, objectId, imageNormalUrlPath, suggestion); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
@ -368,6 +380,7 @@ public class PatrolData implements Comparable<PatrolData> { |
|
|
|
", filterDesc='" + filterDesc + '\'' + |
|
|
|
", brightDesc='" + brightDesc + '\'' + |
|
|
|
", imgAnalyse='" + imgAnalyse + '\'' + |
|
|
|
", brightImgAnalyse='" + brightImgAnalyse + '\'' + |
|
|
|
", desc='" + desc + '\'' + |
|
|
|
", lineId='" + lineId + '\'' + |
|
|
|
", patrolTime='" + patrolTime + '\'' + |
|
|
|
|