1
81041
2019-06-20 ab3c4acf83f54f8449ca8664c4a2bb79bd30f297
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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 + "]";
    }
    
    
    
 
}