| | |
| | | import com.ruoyi.technology.bean.dto.TechnologyBomDto; |
| | | import com.ruoyi.technology.bean.vo.TechnologyBomVo; |
| | | import com.ruoyi.technology.pojo.TechnologyBom; |
| | | import jakarta.servlet.http.HttpServletResponse; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | |
| | | public interface TechnologyBomService extends IService<TechnologyBom> { |
| | |
| | | |
| | | R update(TechnologyBom technologyBom); |
| | | |
| | | boolean batchDelete(List<Integer> ids); |
| | | boolean batchDelete(List<Long> ids); |
| | | |
| | | R uploadBom(MultipartFile file); |
| | | |