庞家镇

This commit is contained in:
Alan-mx 2023-06-29 16:59:27 +08:00
parent 3c7b59498c
commit 27c29fca42
14 changed files with 135 additions and 0 deletions

BIN
lib/javax.ejb.jar Normal file

Binary file not shown.

BIN
lib/javax.jms.jar Normal file

Binary file not shown.

BIN
lib/javax.persistence.jar Normal file

Binary file not shown.

BIN
lib/javax.resource.jar Normal file

Binary file not shown.

BIN
lib/javax.servlet.jsp.jar Normal file

Binary file not shown.

Binary file not shown.

BIN
lib/javax.transaction.jar Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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"]]

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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 + '\'' +
'}';
}
}