diff --git a/lib/javax.ejb.jar b/lib/javax.ejb.jar new file mode 100644 index 0000000..4ebf5ec Binary files /dev/null and b/lib/javax.ejb.jar differ diff --git a/lib/javax.jms.jar b/lib/javax.jms.jar new file mode 100644 index 0000000..d31451a Binary files /dev/null and b/lib/javax.jms.jar differ diff --git a/lib/javax.persistence.jar b/lib/javax.persistence.jar new file mode 100644 index 0000000..21d80e0 Binary files /dev/null and b/lib/javax.persistence.jar differ diff --git a/lib/javax.resource.jar b/lib/javax.resource.jar new file mode 100644 index 0000000..696a234 Binary files /dev/null and b/lib/javax.resource.jar differ diff --git a/lib/javax.servlet.jsp.jar b/lib/javax.servlet.jsp.jar new file mode 100644 index 0000000..9c0631c Binary files /dev/null and b/lib/javax.servlet.jsp.jar differ diff --git a/lib/javax.servlet.jsp.jstl.jar b/lib/javax.servlet.jsp.jstl.jar new file mode 100644 index 0000000..7be17cc Binary files /dev/null and b/lib/javax.servlet.jsp.jstl.jar differ diff --git a/lib/javax.transaction.jar b/lib/javax.transaction.jar new file mode 100644 index 0000000..729c695 Binary files /dev/null and b/lib/javax.transaction.jar differ diff --git a/ruoyi-admin/src/main/resources/shp/shapefile.dbf b/ruoyi-admin/src/main/resources/shp/shapefile.dbf new file mode 100644 index 0000000..96d02b9 Binary files /dev/null and b/ruoyi-admin/src/main/resources/shp/shapefile.dbf differ diff --git a/ruoyi-admin/src/main/resources/shp/shapefile.fix b/ruoyi-admin/src/main/resources/shp/shapefile.fix new file mode 100644 index 0000000..bb4d942 Binary files /dev/null and b/ruoyi-admin/src/main/resources/shp/shapefile.fix differ diff --git a/ruoyi-admin/src/main/resources/shp/shapefile.prj b/ruoyi-admin/src/main/resources/shp/shapefile.prj new file mode 100644 index 0000000..60bfa86 --- /dev/null +++ b/ruoyi-admin/src/main/resources/shp/shapefile.prj @@ -0,0 +1 @@ +GEOGCS["WGS 84", DATUM["World Geodetic System 1984", SPHEROID["WGS 84", 6378137.0, 298.257223563, AUTHORITY["EPSG","7030"]], AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich", 0.0, AUTHORITY["EPSG","8901"]], UNIT["degree", 0.017453292519943295], AXIS["Geodetic longitude", EAST], AXIS["Geodetic latitude", NORTH], AUTHORITY["EPSG","4326"]] \ No newline at end of file diff --git a/ruoyi-admin/src/main/resources/shp/shapefile.shp b/ruoyi-admin/src/main/resources/shp/shapefile.shp new file mode 100644 index 0000000..775095a Binary files /dev/null and b/ruoyi-admin/src/main/resources/shp/shapefile.shp differ diff --git a/ruoyi-admin/src/main/resources/shp/shapefile.shx b/ruoyi-admin/src/main/resources/shp/shapefile.shx new file mode 100644 index 0000000..dac84dd Binary files /dev/null and b/ruoyi-admin/src/main/resources/shp/shapefile.shx differ diff --git a/ruoyi-admin/src/main/resources/shp/shapefile.zip b/ruoyi-admin/src/main/resources/shp/shapefile.zip new file mode 100644 index 0000000..cc52d13 Binary files /dev/null and b/ruoyi-admin/src/main/resources/shp/shapefile.zip differ diff --git a/ruoyi-crops/src/main/java/com/ruoyi/crops/domain/MachineryTrajectory.java b/ruoyi-crops/src/main/java/com/ruoyi/crops/domain/MachineryTrajectory.java new file mode 100644 index 0000000..b85779e --- /dev/null +++ b/ruoyi-crops/src/main/java/com/ruoyi/crops/domain/MachineryTrajectory.java @@ -0,0 +1,134 @@ +package com.ruoyi.crops.domain; + +import java.util.Date; + +public class MachineryTrajectory { + private Integer id; + private Date pttime; + private float lat; + private float lng; + private float course; + private int haspic; + private int iswork; + private float jobwidth; + private String imgurl; + private float depth; + //农机编号 + private String vehicleno; + //地块编号 + private String workplace; + + public Date getPttime() { + return pttime; + } + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public void setPttime(Date pttime) { + this.pttime = pttime; + } + + public float getLat() { + return lat; + } + + public void setLat(float lat) { + this.lat = lat; + } + + public float getLng() { + return lng; + } + + public void setLng(float lng) { + this.lng = lng; + } + + public float getCourse() { + return course; + } + + public void setCourse(float course) { + this.course = course; + } + + public int getHaspic() { + return haspic; + } + + public void setHaspic(int haspic) { + this.haspic = haspic; + } + + public int getIswork() { + return iswork; + } + + public void setIswork(int iswork) { + this.iswork = iswork; + } + + public float getJobwidth() { + return jobwidth; + } + + public void setJobwidth(float jobwidth) { + this.jobwidth = jobwidth; + } + + public String getImgurl() { + return imgurl; + } + + public void setImgurl(String imgurl) { + this.imgurl = imgurl; + } + + public float getDepth() { + return depth; + } + + public void setDepth(float depth) { + this.depth = depth; + } + + public String getVehicleno() { + return vehicleno; + } + + public void setVehicleno(String vehicleno) { + this.vehicleno = vehicleno; + } + + public String getWorkplace() { + return workplace; + } + + public void setWorkplace(String workplace) { + this.workplace = workplace; + } + + @Override + public String toString() { + return "MachineryTrajectory{" + + "id=" + id + + ", pttime=" + pttime + + ", lat=" + lat + + ", lng=" + lng + + ", course=" + course + + ", haspic=" + haspic + + ", iswork=" + iswork + + ", jobwidth=" + jobwidth + + ", imgurl='" + imgurl + '\'' + + ", depth=" + depth + + ", vehicleno='" + vehicleno + '\'' + + ", workplace='" + workplace + '\'' + + '}'; + } +}