package com.whyc.service;
|
|
import com.whyc.mapper.BaoJiGroupUserMapper;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
@Service
|
public class BaoJiGroupUserService {
|
|
@Autowired
|
private BaoJiGroupUserMapper mapper;
|
|
public Object getGroupAndUserList() {
|
return mapper.getGroupList();
|
}
|
}
|