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 + '\'' +
|
'}';
|
}
|
}
|