hdw
2018-11-05 5050f80e7c9582972ca06f905da01b0ca6d9a651
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package com.fgkj.dto.ram;
 
import java.io.Serializable;
import java.util.Date;
 
public class Bts_gprs_state implements Serializable{
    private int num;
    private int dev_id;
    private int op_cmd;
    private Date record_datetime;
    private String scq_val;
    private String note;
    private String stationName;
    private String FBSDeviceName;
    public int getNum() {
        return num;
    }
    public void setNum(int num) {
        this.num = num;
    }
    public int getDev_id() {
        return dev_id;
    }
    public void setDev_id(int dev_id) {
        this.dev_id = dev_id;
    }
    public int getOp_cmd() {
        return op_cmd;
    }
    public void setOp_cmd(int op_cmd) {
        this.op_cmd = op_cmd;
    }
    public Date getRecord_datetime() {
        return record_datetime;
    }
    public void setRecord_datetime(Date record_datetime) {
        this.record_datetime = record_datetime;
    }
    public String getScq_val() {
        return scq_val;
    }
    public void setScq_val(String scq_val) {
        this.scq_val = scq_val;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    public String getStationName() {
        return stationName;
    }
    public void setStationName(String stationName) {
        this.stationName = stationName;
    }
    public String getFBSDeviceName() {
        return FBSDeviceName;
    }
    public void setFBSDeviceName(String fBSDeviceName) {
        FBSDeviceName = fBSDeviceName;
    }
    @Override
    public String toString() {
        return "Bts_gprs_state [num=" + num + ", dev_id=" + dev_id
                + ", op_cmd=" + op_cmd + ", record_datetime=" + record_datetime
                + ", scq_val=" + scq_val + ", note=" + note + ", stationName="
                + stationName + ", FBSDeviceName=" + FBSDeviceName + "]";
    }
    
    
 
}