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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class BadBatt_mon_flag implements Serializable {
    private Integer num;
    private Integer count;
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getCount() {
        return count;
    }
    public void setCount(Integer count) {
        this.count = count;
    }
    @Override
    public String toString() {
        return "BadBatt_mon_flag [num=" + num + ", count=" + count + "]";
    }
    
    
 
}