gongchunyi
昨天 dc5cb9eb1d29c9c15f21d373378fd39ec0e1ed49
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
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;
 
 
 
/**
 * <br>
 * 工序绑定参数 Mapper 接口
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/14 13:16
 */
public interface ProductProcessParamMapper extends BaseMapper<ProductProcessParam> {
 
    IPage<ProductProcessParamDto> selectDtoListByProcessId(@Param("page") IPage<ProductProcessParamDto> page, @Param("processId") Long processId);
 
 
}