123456789101112131415161718192021222324 |
- package com.hssx.cloudmodel.service;
- import com.hssx.cloudmodel.entity.MouldFile;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.hssx.cloudmodel.entity.ProjectFile;
- import com.hssx.cloudmodel.entity.vo.UserVO;
- import com.hssx.cloudmodel.util.HttpRespMsg;
- import org.springframework.web.multipart.MultipartFile;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-08-07
- */
- public interface MouldFileService extends IService<MouldFile> {
- HttpRespMsg addFile(UserVO userVO, Integer blongType,MultipartFile file, String path);
- HttpRespMsg check(Integer mouldFileId, Integer isPass, UserVO userVO);
- HttpRespMsg dowloadFile(MouldFile projectFile, String token);
- HttpRespMsg getAllFileList(int mouldId, UserVO userVO);
- HttpRespMsg getFileList(int mouldId, Integer blongType, UserVO userVO);
- }
|