进度+文件上传重构+文件权限控制

This commit is contained in:
2025-05-10 22:17:04 +08:00
parent ca3724ff32
commit 9825e0ba1d
49 changed files with 758 additions and 664 deletions

View File

@@ -15,9 +15,9 @@ import com.baomidou.mybatisplus.core.toolkit.Constants;
*/
public interface OaProjectScheduleStepMapper extends BaseMapperPlus<OaProjectScheduleStepMapper, OaProjectScheduleStep, OaProjectScheduleStepVo> {
Page<OaProjectScheduleStepVo> selectVoPagePlus(@Param("page")Page<Object> build, @Param(Constants.WRAPPER) QueryWrapper<OaProjectScheduleStep> lqw);
Page<OaProjectScheduleStepVo> selectVoPagePlus(@Param("page")Page<Object> build, @Param(Constants.WRAPPER) QueryWrapper<OaProjectScheduleStep> lqw, @Param("userId") Long userId);
OaProjectScheduleStepVo selectVoPlusById(Long trackId);
OaProjectScheduleStepVo selectVoPlusById(@Param("trackId") Long trackId, @Param("userId") Long userId);
OaProjectScheduleStepVo maxStepByScheduleId(Long scheduleId);

View File

@@ -1,15 +0,0 @@
package com.ruoyi.oa.mapper;
import com.ruoyi.oa.domain.SysOaFile;
import com.ruoyi.oa.domain.vo.SysOaFileVo;
import com.ruoyi.common.core.mapper.BaseMapperPlus;
/**
* 文件存储Mapper接口
*
* @author hdka
* @date 2024-12-15
*/
public interface SysOaFileMapper extends BaseMapperPlus<SysOaFileMapper, SysOaFile, SysOaFileVo> {
}

View File

@@ -0,0 +1,8 @@
package com.ruoyi.oa.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.oa.domain.SysOssAcl;
public interface SysOssAclMapper extends BaseMapper<SysOssAcl> {
/* 这里通常不需要额外方法BaseMapper 提供了增删改查 */
}