package com.qianwen.smartman.modules.coproduction.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import org.apache.ibatis.annotations.Param; import com.qianwen.smartman.modules.coproduction.entity.OrderProcess; import com.qianwen.smartman.modules.coproduction.vo.OrderProcessDetailVO; import com.qianwen.smartman.modules.coproduction.vo.OrderProcessGeneralDetailVO; import com.qianwen.smartman.modules.coproduction.vo.OrderProcessRelationQueryVO; import com.qianwen.smartman.modules.coproduction.vo.OrderProcessRelationVO; public interface OrderProcessMapper extends BaseMapper { OrderProcessGeneralDetailVO startDetailGeneral(@Param("orderProcessId") Long orderProcessId); List listByOrderId(@Param("orderId") Long orderId); List startDetailGeneralByParallel(@Param("orderProcessId") Long orderProcessId); OrderProcessRelationVO getRelation(@Param("orderProcessRelationQueryVO") OrderProcessRelationQueryVO orderProcessRelationQueryVO); List listDetailByOrderId(@Param("orderId") Long orderId); }