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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
package com.fgkj.dto.ram;
 
import java.io.Serializable;
 
public class Hard_dev_sms_state implements Serializable{
    private Integer num;
    private String sms_dev_ip;                //设备ip地址
    private Integer sms_ack_type;            //设备应答标识
    private Integer sms_sincard_ok;            //sim卡状态
    private Integer sms_mobile_net_ok;        //移动网络状态
    private Integer sms_sinal_value;        //移动信号强度
    private Integer sms_is_busy;            //模块状态
    private Integer sms_com_count;            //通信计数
    private Float sms_money_rest;            //
    private Integer sms_com_err_count;        //通信故障计数
    private String note;
    public Hard_dev_sms_state() {
        super();
        // TODO Auto-generated constructor stub
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public String getSms_dev_ip() {
        return sms_dev_ip;
    }
    public void setSms_dev_ip(String sms_dev_ip) {
        this.sms_dev_ip = sms_dev_ip;
    }
    public Integer getSms_ack_type() {
        return sms_ack_type;
    }
    public void setSms_ack_type(Integer sms_ack_type) {
        this.sms_ack_type = sms_ack_type;
    }
    public Integer getSms_sincard_ok() {
        return sms_sincard_ok;
    }
    public void setSms_sincard_ok(Integer sms_sincard_ok) {
        this.sms_sincard_ok = sms_sincard_ok;
    }
    public Integer getSms_mobile_net_ok() {
        return sms_mobile_net_ok;
    }
    public void setSms_mobile_net_ok(Integer sms_mobile_net_ok) {
        this.sms_mobile_net_ok = sms_mobile_net_ok;
    }
    public Integer getSms_sinal_value() {
        return sms_sinal_value;
    }
    public void setSms_sinal_value(Integer sms_sinal_value) {
        this.sms_sinal_value = sms_sinal_value;
    }
    public Integer getSms_is_busy() {
        return sms_is_busy;
    }
    public void setSms_is_busy(Integer sms_is_busy) {
        this.sms_is_busy = sms_is_busy;
    }
    public Integer getSms_com_count() {
        return sms_com_count;
    }
    public void setSms_com_count(Integer sms_com_count) {
        this.sms_com_count = sms_com_count;
    }
    public Float getSms_money_rest() {
        return sms_money_rest;
    }
    public void setSms_money_rest(Float sms_money_rest) {
        this.sms_money_rest = sms_money_rest;
    }
    public Integer getSms_com_err_count() {
        return sms_com_err_count;
    }
    public void setSms_com_err_count(Integer sms_com_err_count) {
        this.sms_com_err_count = sms_com_err_count;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Hard_dev_sms_state [num=" + num + ", sms_dev_ip=" + sms_dev_ip
                + ", sms_ack_type=" + sms_ack_type + ", sms_sincard_ok="
                + sms_sincard_ok + ", sms_mobile_net_ok=" + sms_mobile_net_ok
                + ", sms_sinal_value=" + sms_sinal_value + ", sms_is_busy="
                + sms_is_busy + ", sms_com_count=" + sms_com_count
                + ", sms_money_rest=" + sms_money_rest + ", sms_com_err_count="
                + sms_com_err_count + ", note=" + note + "]";
    }
    
 
}