whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
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
package com.fgkj.dto;
 
import org.apache.ibatis.type.Alias;
 
import java.io.Serializable;
@Alias("Batt_attention")
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) {
        this.battGroupId = battGroupId;
    }
 
    public Integer getMonNum() {
        return monNum;
    }
 
    public void setMonNum(Integer monNum) {
        this.monNum = monNum;
    }
 
    public Integer getUid() {
        return uid;
    }
 
    public void setUid(Integer uid) {
        this.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 + '\'' +
                '}';
    }
}