庞家镇
This commit is contained in:
parent
3c7b59498c
commit
27c29fca42
BIN
lib/javax.ejb.jar
Normal file
BIN
lib/javax.ejb.jar
Normal file
Binary file not shown.
BIN
lib/javax.jms.jar
Normal file
BIN
lib/javax.jms.jar
Normal file
Binary file not shown.
BIN
lib/javax.persistence.jar
Normal file
BIN
lib/javax.persistence.jar
Normal file
Binary file not shown.
BIN
lib/javax.resource.jar
Normal file
BIN
lib/javax.resource.jar
Normal file
Binary file not shown.
BIN
lib/javax.servlet.jsp.jar
Normal file
BIN
lib/javax.servlet.jsp.jar
Normal file
Binary file not shown.
BIN
lib/javax.servlet.jsp.jstl.jar
Normal file
BIN
lib/javax.servlet.jsp.jstl.jar
Normal file
Binary file not shown.
BIN
lib/javax.transaction.jar
Normal file
BIN
lib/javax.transaction.jar
Normal file
Binary file not shown.
BIN
ruoyi-admin/src/main/resources/shp/shapefile.dbf
Normal file
BIN
ruoyi-admin/src/main/resources/shp/shapefile.dbf
Normal file
Binary file not shown.
BIN
ruoyi-admin/src/main/resources/shp/shapefile.fix
Normal file
BIN
ruoyi-admin/src/main/resources/shp/shapefile.fix
Normal file
Binary file not shown.
1
ruoyi-admin/src/main/resources/shp/shapefile.prj
Normal file
1
ruoyi-admin/src/main/resources/shp/shapefile.prj
Normal file
@ -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"]]
|
BIN
ruoyi-admin/src/main/resources/shp/shapefile.shp
Normal file
BIN
ruoyi-admin/src/main/resources/shp/shapefile.shp
Normal file
Binary file not shown.
BIN
ruoyi-admin/src/main/resources/shp/shapefile.shx
Normal file
BIN
ruoyi-admin/src/main/resources/shp/shapefile.shx
Normal file
Binary file not shown.
BIN
ruoyi-admin/src/main/resources/shp/shapefile.zip
Normal file
BIN
ruoyi-admin/src/main/resources/shp/shapefile.zip
Normal file
Binary file not shown.
@ -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 + '\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user