| | |
| | | package com.mes.pp.service.impl; |
| | | |
| | | import com.mes.pp.entity.FlowCard; |
| | | import com.mes.pp.entity.dto.FlowCardDTO; |
| | | import com.mes.pp.mapper.FlowCardMapper; |
| | | import com.mes.pp.service.FlowCardService; |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | |
| | | |
| | | /** |
| | | * <p> |
| | | * 服务实现类 |
| | | * 服务实现类 |
| | | * </p> |
| | | * |
| | | * @author wu |
| | |
| | | public class FlowCardServiceImpl extends ServiceImpl<FlowCardMapper, FlowCard> implements FlowCardService { |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectProject(String processId, Integer technologyNumber){ |
| | | return baseMapper.selectProject(processId,technologyNumber); |
| | | public List<Map<String, Object>> selectProject(String processId, Integer technologyNumber) { |
| | | return baseMapper.selectProject(processId, technologyNumber); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectFlowCard(String processId, Integer technologyNumber){ |
| | | public List<Map<String, Object>> selectFlowCard(String processId, Integer technologyNumber) { |
| | | return baseMapper.selectFlowCard(processId, technologyNumber); |
| | | } |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> selectLabel(String processId, Integer technologyNumber){ |
| | | public List<Map<String, Object>> selectLabel(String processId, Integer technologyNumber) { |
| | | return baseMapper.selectLabel(processId, technologyNumber); |
| | | } |
| | | |
| | | @Override |
| | | public List<FlowCardDTO> flowCardReportForms(String orderId) { |
| | | return baseMapper.flowCardReportForms(orderId); |
| | | } |
| | | } |