whyclxw
5 天以前 bc180bb780dfd21afeec6811e88433a330cbdebb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.whyc.service;
 
import com.whyc.mapper.BaojigroupPowerMapper;
import com.whyc.pojo.db_user.BaojigroupPower;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
@Service
public class BaoJiGroupPowerService {
 
    @Autowired
    private BaojigroupPowerMapper mapper;
 
 
    public List<BaojigroupPower> getListByUserId(Integer userId) {
        return mapper.getListByUserId(userId);
    }
}