package com.qianwen.smartman.modules.coproduction.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import java.util.List; import java.util.Set; import org.apache.ibatis.annotations.Param; import com.qianwen.smartman.modules.coproduction.entity.OrderWorkstation; import com.qianwen.smartman.modules.cps.vo.WorkstationSingleVO; public interface OrderWorkstationMapper extends BaseMapper { Integer checkProcessHaveAssign(@Param("orderProcessId") Long orderProcessId); List getWorkstationCanStart(@Param("orderProcessId") Long orderProcessId); List getWorkstationInProcess(@Param("workstationIdList") Set workstationIdList); }