|
@@ -13,8 +13,7 @@ import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
* @author ruoyi
|
|
|
* @date 2025-02-13
|
|
|
*/
|
|
|
-public class ConsPileHoleInfo extends BaseEntity
|
|
|
-{
|
|
|
+public class ConsPileHoleInfo extends BaseEntity {
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
/** 编号 */
|
|
@@ -26,19 +25,19 @@ public class ConsPileHoleInfo extends BaseEntity
|
|
|
|
|
|
/** dx */
|
|
|
@Excel(name = "dx")
|
|
|
- private Long deltaX;
|
|
|
+ private Double deltaX;
|
|
|
|
|
|
/** dy */
|
|
|
@Excel(name = "dy")
|
|
|
- private Long deltaY;
|
|
|
+ private Double deltaY;
|
|
|
|
|
|
/** 经度 */
|
|
|
@Excel(name = "经度")
|
|
|
- private Long lng;
|
|
|
+ private Double lng;
|
|
|
|
|
|
/** 纬度 */
|
|
|
@Excel(name = "纬度")
|
|
|
- private Long lat;
|
|
|
+ private Double lat;
|
|
|
|
|
|
/** 施工状态 */
|
|
|
@Excel(name = "施工状态")
|
|
@@ -62,124 +61,102 @@ public class ConsPileHoleInfo extends BaseEntity
|
|
|
@Excel(name = "桩径")
|
|
|
private Long diameter;
|
|
|
|
|
|
- public void setId(Long id)
|
|
|
- {
|
|
|
+ public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
- public Long getId()
|
|
|
- {
|
|
|
+ public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
- public void setHoleNum(String holeNum)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setHoleNum(String holeNum) {
|
|
|
this.holeNum = holeNum;
|
|
|
}
|
|
|
|
|
|
- public String getHoleNum()
|
|
|
- {
|
|
|
+ public String getHoleNum() {
|
|
|
return holeNum;
|
|
|
}
|
|
|
- public void setDeltaX(Long deltaX)
|
|
|
- {
|
|
|
- this.deltaX = deltaX;
|
|
|
- }
|
|
|
|
|
|
- public Long getDeltaX()
|
|
|
- {
|
|
|
+ public Double getDeltaX() {
|
|
|
return deltaX;
|
|
|
}
|
|
|
- public void setDeltaY(Long deltaY)
|
|
|
- {
|
|
|
- this.deltaY = deltaY;
|
|
|
+
|
|
|
+ public void setDeltaX(Double deltaX) {
|
|
|
+ this.deltaX = deltaX;
|
|
|
}
|
|
|
|
|
|
- public Long getDeltaY()
|
|
|
- {
|
|
|
+ public Double getDeltaY() {
|
|
|
return deltaY;
|
|
|
}
|
|
|
- public void setLng(Long lng)
|
|
|
- {
|
|
|
- this.lng = lng;
|
|
|
+
|
|
|
+ public void setDeltaY(Double deltaY) {
|
|
|
+ this.deltaY = deltaY;
|
|
|
}
|
|
|
|
|
|
- public Long getLng()
|
|
|
- {
|
|
|
+ public Double getLng() {
|
|
|
return lng;
|
|
|
}
|
|
|
- public void setLat(Long lat)
|
|
|
- {
|
|
|
- this.lat = lat;
|
|
|
+
|
|
|
+ public void setLng(Double lng) {
|
|
|
+ this.lng = lng;
|
|
|
}
|
|
|
|
|
|
- public Long getLat()
|
|
|
- {
|
|
|
+ public Double getLat() {
|
|
|
return lat;
|
|
|
}
|
|
|
- public void setConsStatus(String consStatus)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setLat(Double lat) {
|
|
|
+ this.lat = lat;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setConsStatus(String consStatus) {
|
|
|
this.consStatus = consStatus;
|
|
|
}
|
|
|
|
|
|
- public String getConsStatus()
|
|
|
- {
|
|
|
+ public String getConsStatus() {
|
|
|
return consStatus;
|
|
|
}
|
|
|
- public void setStartTime(Date startTime)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setStartTime(Date startTime) {
|
|
|
this.startTime = startTime;
|
|
|
}
|
|
|
|
|
|
- public Date getStartTime()
|
|
|
- {
|
|
|
+ public Date getStartTime() {
|
|
|
return startTime;
|
|
|
}
|
|
|
- public void setEndTime(Date endTime)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setEndTime(Date endTime) {
|
|
|
this.endTime = endTime;
|
|
|
}
|
|
|
|
|
|
- public Date getEndTime()
|
|
|
- {
|
|
|
+ public Date getEndTime() {
|
|
|
return endTime;
|
|
|
}
|
|
|
- public void setDesDept(Long desDept)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDesDept(Long desDept) {
|
|
|
this.desDept = desDept;
|
|
|
}
|
|
|
|
|
|
- public Long getDesDept()
|
|
|
- {
|
|
|
+ public Long getDesDept() {
|
|
|
return desDept;
|
|
|
}
|
|
|
- public void setDiameter(Long diameter)
|
|
|
- {
|
|
|
+
|
|
|
+ public void setDiameter(Long diameter) {
|
|
|
this.diameter = diameter;
|
|
|
}
|
|
|
|
|
|
- public Long getDiameter()
|
|
|
- {
|
|
|
+ public Long getDiameter() {
|
|
|
return diameter;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
- .append("id", getId())
|
|
|
- .append("holeNum", getHoleNum())
|
|
|
- .append("deltaX", getDeltaX())
|
|
|
- .append("deltaY", getDeltaY())
|
|
|
- .append("lng", getLng())
|
|
|
- .append("lat", getLat())
|
|
|
- .append("consStatus", getConsStatus())
|
|
|
- .append("startTime", getStartTime())
|
|
|
- .append("endTime", getEndTime())
|
|
|
- .append("desDept", getDesDept())
|
|
|
- .append("diameter", getDiameter())
|
|
|
- .append("updateTime", getUpdateTime())
|
|
|
- .append("createTime", getCreateTime())
|
|
|
- .append("createBy", getCreateBy())
|
|
|
- .append("updateBy", getUpdateBy())
|
|
|
+ return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE).append("id", getId())
|
|
|
+ .append("holeNum", getHoleNum()).append("deltaX", getDeltaX()).append("deltaY", getDeltaY())
|
|
|
+ .append("lng", getLng()).append("lat", getLat()).append("consStatus", getConsStatus())
|
|
|
+ .append("startTime", getStartTime()).append("endTime", getEndTime()).append("desDept", getDesDept())
|
|
|
+ .append("diameter", getDiameter()).append("updateTime", getUpdateTime())
|
|
|
+ .append("createTime", getCreateTime()).append("createBy", getCreateBy()).append("updateBy", getUpdateBy())
|
|
|
.toString();
|
|
|
}
|
|
|
}
|