| | |
| | | package org.jeecg.modules.andon.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import liquibase.pro.packaged.S; |
| | | import org.jeecg.modules.andon.dto.AndonButtonDTO; |
| | | import org.jeecg.modules.andon.dto.AndonOrdeDto; |
| | | import org.jeecg.modules.andon.entity.AndonButtonConfig; |
| | | import org.jeecg.modules.andon.mapper.AndonButtonConfigMapper; |
| | | import org.jeecg.modules.andon.service.IAndonButtonConfigService; |
| | |
| | | } |
| | | |
| | | @Override |
| | | public List<AndonButtonDTO> queryUserAndonCallList(String factoryId) { |
| | | return baseMapper.queryUserAndonCallList(factoryId); |
| | | public List<AndonOrdeDto> queryUserAndonCallList(String factoryId, String orderStatus) { |
| | | return baseMapper.queryUserAndonCallList(factoryId, orderStatus); |
| | | } |
| | | |
| | | @Override |
| | | public List<AndonButtonDTO> queryUserAndonRespondList(String factoryId) { |
| | | return baseMapper.queryUserAndonRespondList(factoryId); |
| | | public List<AndonOrdeDto> queryUserAndonRespondList(String factoryId, String orderStatus) { |
| | | return baseMapper.queryUserAndonRespondList(factoryId, orderStatus); |
| | | } |
| | | |
| | | @Override |
| | | public List<AndonOrdeDto> queryUserAndonHandelList(String factoryId, String orderStatus) { |
| | | return baseMapper.queryUserAndonHandelList(factoryId, orderStatus); |
| | | } |
| | | |
| | | |