소스 검색

store 中添加一个 SubDirCount model

reghao 2 년 전
부모
커밋
39c460a2d4
1개의 변경된 파일26개의 추가작업 그리고 0개의 파일을 삭제
  1. 26 0
      jdk/src/main/java/cn/reghao/jutil/jdk/store/SubDirCount.java

+ 26 - 0
jdk/src/main/java/cn/reghao/jutil/jdk/store/SubDirCount.java

@@ -0,0 +1,26 @@
+package cn.reghao.jutil.jdk.store;
+
+/**
+ * @author reghao
+ * @date 2023-11-01 21:38:59
+ */
+public class SubDirCount {
+    private String relativeDir;
+    private int total;
+
+    public void setRelativeDir(String relativeDir) {
+        this.relativeDir = relativeDir;
+    }
+
+    public String getRelativeDir() {
+        return relativeDir;
+    }
+
+    public void setTotal(int total) {
+        this.total = total;
+    }
+
+    public int getTotal() {
+        return total;
+    }
+}