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