zyy
2025-07-21 f25b39e0d5fcae415a8824fc03d42fe681e96bf8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.nq.service.impl;
 
import com.nq.dao.BankMapper;
import com.nq.pojo.Bank;
import com.nq.service.IBankServices;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service
public class BankServices  implements IBankServices {
 
    @Autowired
    BankMapper  bankMapper;
 
 
     @Override
    public List<Bank> queryAll() {
        return bankMapper.queryAll();
    }
}