lyh
2025-06-30 e3a037adf3861fee78ad5478784f24e59cc598a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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<MaintenanceThreeAcceptanceMapper, MaintenanceThreeAcceptance> implements IMaintenanceThreeAcceptanceService {
 
    @Override
    public List<Map<String, Object>> getMaintenanceThreeAcceptanceList(String maintenanceOrderId) {
        return this.baseMapper.getMaintenanceThreeAcceptanceList(maintenanceOrderId);
    }
}