对象存储-初始化

This commit is contained in:
2026-02-05 16:27:39 +08:00
parent ab574032c0
commit 468e2e45a5
35 changed files with 1579 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package com.blog.service;
import com.blog.entity.PathEntity;
import com.baomidou.mybatisplus.extension.service.IService;
/**
* @author 29203
* @description 针对表【sys_path(文件目录映射表)】的数据库操作Service
* @createDate 2026-02-05 11:17:22
*/
public interface PathService {
boolean listPath(Long userId);
}