| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Description: mom_eam_precision_inspection |
| | | * @Author: jeecg-boot |
| | |
| | | @Service |
| | | public class PrecisionInspectionServiceImpl extends ServiceImpl<PrecisionInspectionMapper, PrecisionInspection> implements IPrecisionInspectionService { |
| | | |
| | | @Override |
| | | public List<Map<String, Object>> getPrecisionInspectionList(String maintenanceOrderId) { |
| | | return this.baseMapper.getPrecisionInspectionList(maintenanceOrderId); |
| | | } |
| | | } |