Sign in

guzijian / wvp-assist · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • wvp-assist
  • ..
  • dto
  • SpaceInfo.java
  • 优化录像路径配置,不再使用zlm默认http服务器
    60dfc69c
    648540858 authored
    2023-03-25 18:39:31 +0800  
    Browse Code »
SpaceInfo.java 364 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package top.panll.assist.dto;

public class SpaceInfo {
    private long total;
    private long free;

    public long getTotal() {
        return total;
    }

    public void setTotal(long total) {
        this.total = total;
    }

    public long getFree() {
        return free;
    }

    public void setFree(long free) {
        this.free = free;
    }

}