luxiaotao1123
2021-01-18 d38ff4334bd76a380b734c3c174eac65b9e64db8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package zy.cloud.wms.system.service.impl;
 
import com.baomidou.mybatisplus.service.impl.ServiceImpl;
import zy.cloud.wms.system.entity.UserLogin;
import zy.cloud.wms.system.mapper.UserLoginMapper;
import zy.cloud.wms.system.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();
    }
}