MouldFileService.java 853 B

123456789101112131415161718192021222324
  1. package com.hssx.cloudmodel.service;
  2. import com.hssx.cloudmodel.entity.MouldFile;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.hssx.cloudmodel.entity.ProjectFile;
  5. import com.hssx.cloudmodel.entity.vo.UserVO;
  6. import com.hssx.cloudmodel.util.HttpRespMsg;
  7. import org.springframework.web.multipart.MultipartFile;
  8. /**
  9. * <p>
  10. * 服务类
  11. * </p>
  12. *
  13. * @author 吴涛涛
  14. * @since 2019-08-07
  15. */
  16. public interface MouldFileService extends IService<MouldFile> {
  17. HttpRespMsg addFile(UserVO userVO, Integer blongType,MultipartFile file, String path);
  18. HttpRespMsg check(Integer mouldFileId, Integer isPass, UserVO userVO);
  19. HttpRespMsg dowloadFile(MouldFile projectFile, String token);
  20. HttpRespMsg getAllFileList(int mouldId, UserVO userVO);
  21. HttpRespMsg getFileList(int mouldId, Integer blongType, UserVO userVO);
  22. }