From d5f885b85691097bd91dbb798542664899c96a21 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 13 九月 2023 14:08:08 +0800 Subject: [PATCH] 1 --- src/main/java/com/moon/server/entity/mn/GeomappableunitEntity.java | 101 +++++++++++++++++++++++++------------------------- 1 files changed, 50 insertions(+), 51 deletions(-) diff --git a/src/main/java/com/moon/server/entity/mn/GeomappableunitEntity.java b/src/main/java/com/moon/server/entity/mn/GeomappableunitEntity.java index ebae9d9..71e5057 100644 --- a/src/main/java/com/moon/server/entity/mn/GeomappableunitEntity.java +++ b/src/main/java/com/moon/server/entity/mn/GeomappableunitEntity.java @@ -17,29 +17,28 @@ @AllArgsConstructor @TableName("mn.geo_mappable_unit") @EqualsAndHashCode(callSuper = false) -@SuppressWarnings("AlibabaLowerCamelCaseVariableNaming") public class GeomappableunitEntity extends BaseGeoEntity { - private static final long serialVersionUID = 903329222883716736L; + private static final long serialVersionUID = 440832093097657024L; - private String unit_num; + private String unitNum; private String name; private String scale; - private String coor_sys; + private String coorSys; - private String elev_sys; + private String elevSys; - private Double left_lon; + private Double leftLon; - private Double right_lon; + private Double rightLon; - private String top_lat; + private String topLat; private String source; - private Timestamp collect_t; + private Timestamp collectt; private String datastatus; @@ -52,115 +51,115 @@ public GeomappableunitEntity() { } - public String getunit_num() { - return unit_num; + public String getUnitNum() { + return unitNum; } - public void setunit_num(String unit_num) { - this.unit_num = unit_num; + public void setUnitNum(String unitNum) { + this.unitNum = unitNum; } - public String getname() { + public String getName() { return name; } - public void setname(String name) { + public void setName(String name) { this.name = name; } - public String getscale() { + public String getScale() { return scale; } - public void setscale(String scale) { + public void setScale(String scale) { this.scale = scale; } - public String getcoor_sys() { - return coor_sys; + public String getCoorSys() { + return coorSys; } - public void setcoor_sys(String coor_sys) { - this.coor_sys = coor_sys; + public void setCoorSys(String coorSys) { + this.coorSys = coorSys; } - public String getelev_sys() { - return elev_sys; + public String getElevSys() { + return elevSys; } - public void setelev_sys(String elev_sys) { - this.elev_sys = elev_sys; + public void setElevSys(String elevSys) { + this.elevSys = elevSys; } - public Double getleft_lon() { - return left_lon; + public Double getLeftLon() { + return leftLon; } - public void setleft_lon(Double left_lon) { - this.left_lon = left_lon; + public void setLeftLon(Double leftLon) { + this.leftLon = leftLon; } - public Double getright_lon() { - return right_lon; + public Double getRightLon() { + return rightLon; } - public void setright_lon(Double right_lon) { - this.right_lon = right_lon; + public void setRightLon(Double rightLon) { + this.rightLon = rightLon; } - public String gettop_lat() { - return top_lat; + public String getTopLat() { + return topLat; } - public void settop_lat(String top_lat) { - this.top_lat = top_lat; + public void setTopLat(String topLat) { + this.topLat = topLat; } - public String getsource() { + public String getSource() { return source; } - public void setsource(String source) { + public void setSource(String source) { this.source = source; } - public Timestamp getcollect_t() { - return collect_t; + public Timestamp getCollectt() { + return collectt; } - public void setcollect_t(Timestamp collect_t) { - this.collect_t = collect_t; + public void setCollectt(Timestamp collectt) { + this.collectt = collectt; } - public String getdatastatus() { + public String getDatastatus() { return datastatus; } - public void setdatastatus(String datastatus) { + public void setDatastatus(String datastatus) { this.datastatus = datastatus; } - public String getremarks() { + public String getRemarks() { return remarks; } - public void setremarks(String remarks) { + public void setRemarks(String remarks) { this.remarks = remarks; } - public String getversion() { + public String getVersion() { return version; } - public void setversion(String version) { + public void setVersion(String version) { this.version = version; } - public String getdatastage() { + public String getDatastage() { return datastage; } - public void setdatastage(String datastage) { + public void setDatastage(String datastage) { this.datastage = datastage; } } -- Gitblit v1.9.3