| | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.andon.dto.AndonButtonDTO; |
| | | import org.jeecg.modules.andon.dto.AndonOrdeDto; |
| | | import org.jeecg.modules.andon.entity.AndonButtonConfig; |
| | | |
| | | import java.util.List; |
| | |
| | | * @param factoryId |
| | | * @return |
| | | */ |
| | | List<AndonButtonDTO> queryUserAndonCallList(String factoryId); |
| | | List<AndonOrdeDto> queryUserAndonCallList(String factoryId, String orderStatus); |
| | | |
| | | /** |
| | | * 响应安灯列表 |
| | | * @param factoryId |
| | | * @return |
| | | */ |
| | | List<AndonButtonDTO> queryUserAndonRespondList(String factoryId); |
| | | List<AndonOrdeDto> queryUserAndonRespondList(String factoryId, String orderStatus); |
| | | |
| | | /** |
| | | * 处理安灯列表 |
| | | * @param factoryId |
| | | * @return |
| | | */ |
| | | List<AndonOrdeDto> queryUserAndonHandelList(String factoryId, String orderStatus); |
| | | |
| | | } |
| | | |