| | |
| | | package com.ruoyi.production.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.production.dto.ProductProcessParamDto; |
| | | import com.ruoyi.production.pojo.ProductProcessParam; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | |
| | | /** |
| | | * <br> |
| | |
| | | */ |
| | | public interface ProductProcessParamMapper extends BaseMapper<ProductProcessParam> { |
| | | |
| | | List<ProductProcessParamDto> selectDtoListByProcessId(@Param("processId") Long processId); |
| | | IPage<ProductProcessParamDto> selectDtoListByProcessId(@Param("page") IPage<ProductProcessParamDto> page, @Param("processId") Long processId); |
| | | |
| | | |
| | | } |