Sign in

guzijian / wvp-GB28181-pro · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wvp-GB28181-pro
  • ..
  • bean
  • ResourceBaceInfo.java
  • 首页改造完成,待添加系统信息
    ca891f36
    648540858 authored
    2022-10-24 15:20:35 +0800  
    Browse Code »
ResourceBaceInfo.java 393 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
package com.genersoft.iot.vmp.vmanager.bean;

public class ResourceBaceInfo {
    private int total;
    private int 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;
    }
}