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; /** *

* 服务类 *

* * @author 吴涛涛 * @since 2019-08-13 */ public interface PartService extends IService { HttpRespMsg importPartExcel(MultipartFile file, UserVO userVO) throws IOException, InvalidFormatException; HttpRespMsg add(Part part, UserVO userVO); HttpRespMsg getList(UserVO userVO); }