| | |
| | | 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; |
| | |
| | | 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); |
| | | } |
| | | } |