| | |
| | | package com.ruoyi.production.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.production.dto.ProductMaterialSkuDto; |
| | | import com.ruoyi.production.pojo.ProductMaterialSku; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.List; |
| | | |
| | |
| | | * @since 2026/03/12 10:04 |
| | | */ |
| | | public interface ProductMaterialSkuService extends IService<ProductMaterialSku> { |
| | | List<ProductMaterialSkuDto> productMaterialSkuList(Long materialId); |
| | | Page<ProductMaterialSkuDto> productMaterialSkuList(Page<ProductMaterialSku> page, ProductMaterialSkuDto dto); |
| | | |
| | | void addProductMaterialSku(ProductMaterialSku productMaterialSku); |
| | | |
| | | void updateProductMaterialSku(ProductMaterialSku productMaterialSku); |
| | | |
| | | void deleteProductMaterialSku(List<Long> ids); |
| | | |
| | | void importProdData(MultipartFile file, Long materialId); |
| | | } |