| | |
| | | package com.zy.asrs.common.sys.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.zy.asrs.common.sys.entity.UserLogin; |
| | | import com.zy.asrs.common.sys.mapper.UserLoginMapper; |
| | | import com.zy.asrs.common.sys.service.UserLoginService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service("userLoginService") |
| | | public class UserLoginServiceImpl extends ServiceImpl<UserLoginMapper, UserLogin> implements UserLoginService { |
| | | |
| | | @Autowired |
| | | private UserLoginMapper userLoginMapper; |
| | | |
| | | @Override |
| | | public int selectCountByCurrentWeek() { |
| | | return userLoginMapper.selectCountByCurrentWeek(); |
| | | } |
| | | } |
| | | package com.zy.asrs.common.sys.service.impl;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| | | import com.zy.asrs.common.sys.entity.UserLogin;
|
| | | import com.zy.asrs.common.sys.mapper.UserLoginMapper;
|
| | | import com.zy.asrs.common.sys.service.UserLoginService;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | @Service("userLoginService")
|
| | | public class UserLoginServiceImpl extends ServiceImpl<UserLoginMapper, UserLogin> implements UserLoginService {
|
| | |
|
| | | @Autowired
|
| | | private UserLoginMapper userLoginMapper;
|
| | |
|
| | | @Override
|
| | | public int selectCountByCurrentWeek() {
|
| | | return userLoginMapper.selectCountByCurrentWeek();
|
| | | }
|
| | | }
|