package org.jeecg.modules.eam.service.impl; import org.jeecg.modules.eam.entity.MaintenanceThreeAcceptance; import org.jeecg.modules.eam.mapper.MaintenanceThreeAcceptanceMapper; import org.jeecg.modules.eam.service.IMaintenanceThreeAcceptanceService; import org.springframework.stereotype.Service; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import java.util.List; import java.util.Map; /** * @Description: mom_eam_maintenance_three_acceptance * @Author: jeecg-boot * @Date: 2023-10-18 * @Version: V1.0 */ @Service public class MaintenanceThreeAcceptanceServiceImpl extends ServiceImpl implements IMaintenanceThreeAcceptanceService { @Override public List> getMaintenanceThreeAcceptanceList(String maintenanceOrderId) { return this.baseMapper.getMaintenanceThreeAcceptanceList(maintenanceOrderId); } }