1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.whyc.dto;
|
| /**落后电池单体*/
| public class BadBattMonDTO {
| private Integer note;
| private Integer num;
|
| public Integer getNote() {
| return note;
| }
|
| public void setNote(Integer note) {
| this.note = note;
| }
|
| public Integer getNum() {
| return num;
| }
|
| public void setNum(Integer num) {
| this.num = num;
| }
| }
|
|