gongchunyi
2 天以前 a274b897e58c958903c3e00da6c1ccb16646a979
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.production.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.production.dto.ProductMaterialSkuDto;
import com.ruoyi.production.pojo.ProductMaterialSku;
 
import java.util.List;
 
/**
 * <br>
 * 物料规格接口
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/12 10:04
 */
public interface ProductMaterialSkuService extends IService<ProductMaterialSku> {
    List<ProductMaterialSkuDto> productMaterialSkuList(Long materialId);
 
    void addProductMaterialSku(ProductMaterialSku productMaterialSku);
 
    void updateProductMaterialSku(ProductMaterialSku productMaterialSku);
 
    void deleteProductMaterialSku(List<Long> ids);
}