first commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package lingtao.net.service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import lingtao.net.bean.LoginLog;
|
||||
import lingtao.net.dao.LoginLogMapper;
|
||||
|
||||
@Service
|
||||
public class LoginLogService {
|
||||
|
||||
@Autowired
|
||||
private LoginLogMapper loginLogMapper;
|
||||
|
||||
public List<LoginLog> getLoginLogList(LoginLog loginLog) {
|
||||
return loginLogMapper.getLoginLogList(loginLog);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user