gongchunyi
7 小时以前 26e295956b81d6bfe5f181f040bf8ecd0079ba54
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.ruoyi.production.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.ruoyi.production.dto.ProductProcessParamDto;
import com.ruoyi.production.pojo.ProductProcessParam;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <br>
 * 工序绑定参数 Mapper 接口
 * </br>
 *
 * @author deslrey
 * @version 1.0
 * @since 2026/03/14 13:16
 */
public interface ProductProcessParamMapper extends BaseMapper<ProductProcessParam> {
 
    List<ProductProcessParamDto> selectDtoListByProcessId(@Param("processId") Long processId);
 
 
}