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
package com.fgkj.dto;
 
import java.io.Serializable;
 
public class Batt_attention implements Serializable{ 
    private Integer num;
    private Integer BattGroupId;
    private Integer MonNum;
    private Integer Uid;
    private String  note;
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
    public Integer getBattGroupId() {
        return BattGroupId;
    }
    public void setBattGroupId(Integer battGroupId) {
        BattGroupId = battGroupId;
    }
    public Integer getMonNum() {
        return MonNum;
    }
    public void setMonNum(Integer monNum) {
        MonNum = monNum;
    }
    
    public Integer getUid() {
        return Uid;
    }
    public void setUid(Integer uid) {
        Uid = uid;
    }
    public String getNote() {
        return note;
    }
    public void setNote(String note) {
        this.note = note;
    }
    @Override
    public String toString() {
        return "Batt_attention [num=" + num + ", BattGroupId=" + BattGroupId
                + ", MonNum=" + MonNum + ", Uid=" + Uid + ", note=" + note
                + "]";
    }
    
}