package com.ruoyi.production.mapper;
|
|
import com.ruoyi.production.dto.ProcessRouteDto;
|
import com.ruoyi.production.pojo.ProductProcessRoute;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import org.apache.ibatis.annotations.Mapper;
|
import org.apache.ibatis.annotations.Param;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author 芯导软件(江苏)有限公司
|
* @since 2026-01-15 02:51:09
|
*/
|
@Mapper
|
public interface ProductProcessRouteMapper extends BaseMapper<ProductProcessRoute> {
|
|
ProcessRouteDto listMain(@Param("orderId") Long orderId);
|
}
|