| | |
| | | import com.ruoyi.basic.pojo.ProductModel; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | |
| | | |
| | |
| | | */ |
| | | public interface IProductModelService extends IService<ProductModel> { |
| | | |
| | | int addOrEditProductModel(ProductModelDto productModelDto); |
| | | int addOrEditProductModel(ProductModelDto productModelDto) throws IOException; |
| | | |
| | | int delProductModel(Long[] ids); |
| | | |
| | |
| | | */ |
| | | IPage<ProductModel> modelListPage(Page page , ProductDto productDto); |
| | | |
| | | Boolean importProduct(MultipartFile file); |
| | | void importProduct(MultipartFile file, HttpServletResponse response); |
| | | } |