1234567891011121314151617181920212223242526 |
- package com.hssx.cloudmodel.service;
- import com.hssx.cloudmodel.entity.ProjectFile;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.hssx.cloudmodel.entity.vo.UserVO;
- import com.hssx.cloudmodel.util.HttpRespMsg;
- import org.springframework.web.multipart.MultipartFile;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-07-30
- */
- public interface ProjectFileService extends IService<ProjectFile> {
- HttpRespMsg addFile(UserVO userVO, MultipartFile file, String path);
- HttpRespMsg dowloadFile(ProjectFile projectFile, String token);
- HttpRespMsg getFileList(UserVO userVO);
- HttpRespMsg delFile(ProjectFile projectFile);
- }
|