gongchunyi
8 小时以前 ec7d3b867e7b7f5073dda1684a8720424b9da5ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.production.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.production.dto.ProductMaterialSkuDto;
import com.ruoyi.production.pojo.ProductMaterial;
 
/**
 * <br>
 * 产品物料信息Mapper
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/11 16:35
 */
public interface ProductMaterialMapper extends BaseMapper<ProductMaterial> {
 
    ProductMaterialSkuDto selectProductByModelId(Long productModelId);
 
    ProductMaterialSkuDto selectProductByProductMainId(Long productOrderId);
}