12345678910111213141516171819202122232425262728 |
- package com.hssx.cloudmodel.service;
- import com.hssx.cloudmodel.entity.Part;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.hssx.cloudmodel.entity.vo.UserVO;
- import com.hssx.cloudmodel.util.HttpRespMsg;
- import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
- import org.springframework.web.multipart.MultipartFile;
- import javax.servlet.http.HttpServletResponse;
- import java.io.IOException;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author 吴涛涛
- * @since 2019-08-13
- */
- public interface PartService extends IService<Part> {
- HttpRespMsg importPartExcel(MultipartFile file, UserVO userVO) throws IOException, InvalidFormatException;
- HttpRespMsg add(Part part, UserVO userVO);
- HttpRespMsg getList(UserVO userVO);
- }
|