package com.fgkj.dto;
|
|
import java.io.Serializable;
|
|
public class Positiomap_usr implements Serializable{
|
private int num;
|
private float map_longitude;
|
private float map_latitude;
|
private int map_level;
|
private int uid;
|
private String note;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public float getMap_longitude() {
|
return map_longitude;
|
}
|
public void setMap_longitude(float map_longitude) {
|
this.map_longitude = map_longitude;
|
}
|
public float getMap_latitude() {
|
return map_latitude;
|
}
|
public void setMap_latitude(float map_latitude) {
|
this.map_latitude = map_latitude;
|
}
|
public int getMap_level() {
|
return map_level;
|
}
|
public void setMap_level(int map_level) {
|
this.map_level = map_level;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
public int getUid() {
|
return uid;
|
}
|
public void setUid(int uid) {
|
this.uid = uid;
|
}
|
@Override
|
public String toString() {
|
return "Positiomap_usr [num=" + num + ", map_longitude="
|
+ map_longitude + ", map_latitude=" + map_latitude
|
+ ", map_level=" + map_level + ", uid=" + uid + ", note="
|
+ note + "]";
|
}
|
|
|
|
|
}
|