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
|
+ "]";
|
}
|
|
}
|