leutu
2024-05-08 543e4eb01ca210b20876e8139cb3d0403d7d065c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.skyline.electricity.service.impl;
 
import com.skyline.electricity.service.*;
import org.springframework.stereotype.*;
import org.springframework.transaction.annotation.*;
import com.skyline.electricity.mapper2.*;
import org.springframework.beans.factory.annotation.*;
import java.util.*;
 
@Service
@Transactional(transactionManager = "secondDataSourceTransactionManger")
public class OutServiceImpl implements OutService
{
    @Autowired
    OutMapper mapper;
    
    public List<Map> selectExternPeople(final String id) {
        return (List<Map>)this.mapper.selectExternPeople(id);
    }
}