Lius
2025-03-13 eec61b51d7b64695d177c7cedd2da49f03f8c26e
lxzn-module-dnc/src/main/java/org/jeecg/modules/dnc/mapper/ProcessStreamMapper.java
@@ -3,5 +3,23 @@
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.jeecg.modules.dnc.entity.ProcessStream;
import java.util.List;
public interface ProcessStreamMapper extends BaseMapper<ProcessStream> {
    /**
     * 查询工序信息
     * @param userId
     * @return
     */
    List<ProcessStream> getByUserPerms(String userId);
    /**
     * 根据一组部件和零件查找工序
     * @param productId
     * @param componentIds
     * @param partsIds
     * @return
     */
    List<ProcessStream> findByPartsAndComponents(String productId, List<String> componentIds, List<String> partsIds);
}