| | |
| | | package com.ruoyi.production.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.production.dto.ProductMaterialSkuDto; |
| | | import com.ruoyi.production.pojo.ProductMaterialSku; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * <br> |
| | |
| | | * @since 2026/03/12 10:04 |
| | | */ |
| | | public interface ProductMaterialSkuMapper extends BaseMapper<ProductMaterialSku> { |
| | | } |
| | | |
| | | /** |
| | | * 连表查询物料和规格 |
| | | */ |
| | | Page<ProductMaterialSkuDto> selectSkuWithMaterialPage(@Param("page") Page<ProductMaterialSkuDto> page, @Param("dto") ProductMaterialSkuDto dto, @Param("type") Integer type); |
| | | |
| | | } |