| | |
| | | import com.baomidou.mybatisplus.service.impl.ServiceImpl; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | @Service("wrkMastExecuteService") |
| | | public class WrkMastExecuteServiceImpl extends ServiceImpl<WrkMastExecuteMapper, WrkMastExecute> implements WrkMastExecuteService { |
| | | |
| | | @Override |
| | | public WrkMastExecute getWrkMastByWrkNo(Long wrkNo) { |
| | | public WrkMastExecute getWrkMastExecuteByWrkNo(Long wrkNo) { |
| | | return this.baseMapper.getWrkMastByWrkNo(wrkNo); |
| | | } |
| | | |
| | | @Override |
| | | public Integer getWrkMastByJarIdCount(Integer jarId) { |
| | | public List<WrkMastExecute> getWrkMastExecuteByJarNo(Integer jarId) { |
| | | return this.baseMapper.getWrkMastByJarId(jarId); |
| | | } |
| | | |
| | | @Override |
| | | public List<WrkMastExecute> sselectWrkMastExecuteByType(Integer type) { |
| | | return this.baseMapper.sselectWrkMastExecuteByType(type); |
| | | } |
| | | |
| | | @Override |
| | | public List<WrkMastExecute> sselectWrkMastExecuteByTypeAndIoTyper(Integer type,Integer ioType) { |
| | | return this.baseMapper.sselectWrkMastExecuteByTypeAndIoTyper(type,ioType); |
| | | } |
| | | |
| | | @Override |
| | | public Integer getWrkMastExecuteByJarIdCount(Integer jarId) { |
| | | return this.baseMapper.getWrkMastByJarIdCount(jarId); |
| | | } |
| | | } |