进度+文件上传重构+文件权限控制
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
@@ -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> {
|
||||
|
||||
}
|
||||
@@ -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 提供了增删改查 */
|
||||
}
|
||||
Reference in New Issue
Block a user