| 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
 | | package com.genersoft.iot.vmp.vmanager.bean; |  |   |  | public class ResourceBaseInfo { |  |     private int total; |  |     private int online; |  |   |  |     public ResourceBaseInfo() { |  |     } |  |   |  |     public ResourceBaseInfo(int total, int online) { |  |         this.total = total; |  |         this.online = online; |  |     } |  |   |  |     public int getTotal() { |  |         return total; |  |     } |  |   |  |     public void setTotal(int total) { |  |         this.total = total; |  |     } |  |   |  |     public int getOnline() { |  |         return online; |  |     } |  |   |  |     public void setOnline(int online) { |  |         this.online = online; |  |     } |  | } | 
 |